Questions tagged as 'java'

2
answers

In OOP when should return be used?

I have an OOP-related question, when should I use return in a method?! Since when I pass an object to the method and the modifications are made to it, I do not need to return, example below: Method call: this.ordenaArquivo(this.ar...
asked by 01.11.2015 / 03:35
2
answers

How to index and search for files in Lucene

I'm trying to generate a Java file crawler with the help of Lucene. Follow this guide to iMasters and tried to adapt to version 4.7.0 , the problem is that at some point the search is not working. I checked the index file and both the infor...
asked by 17.03.2014 / 19:59
1
answer

Create inputs for images dynamically and switch to Servlet without redirecting page?

I would like to create a button that causes a input to appear for sending images. This button can be used multiple times. When the user clicks the submit button, those images must be sent to the server without reloading the page....
asked by 05.04.2016 / 23:39
1
answer

How do I make the next loop perform?

I have a list with two or more Strings: [Panel, Control] Now comes the problem: for (int i = 0; i < lista.size(); i++){ String linha = ""; while ((linha = leitura.readLine()) != null){ if (linha.contaens(lista.get(i)))...
asked by 25.03.2016 / 07:14
2
answers

How to reproduce relationship in Objects?

According to the definition of this site :    CARDINALITY       It is the maximum and minimum number of occurrences of an entity that are   associated with the occurrences of another entity that participates in the   relationship. That is...
asked by 11.03.2016 / 03:17
1
answer

Monitoring MySQL database with Java application

I have a Java desktop application w / DB MySQL running on 100 company branches for over 6 years. Today at the head office we need some information from the branch database. I'm developing a web service Rest, to perform this integration. The f...
asked by 05.08.2015 / 00:38
2
answers

Encryption with Java and PostgreSQL / MYSQL

Hello I have a question in my college project, in scope it says like this:  "Users and passwords can be stored in the database, using the bank's own encryption." Is the crypto in both default by MD5? In that case I need to use the MD5 crypto...
asked by 28.07.2015 / 19:16
2
answers

Adjust bar code size Barbecue

I'm generating a bar code using Barbecue, but where I'm going to print the code is rather low or the paper is 8 cm wide and the information I have to generate the barcode has 44 digits. I've tried to scale my generated code but I can not....
asked by 18.08.2015 / 20:41
1
answer

Create button via code

Is it possible to create a Button through code rather than design mode (xml)? For example: I'll create a screen with a EditText , type a number, and click a Button . After this, x (number entered) EditText is cr...
asked by 16.07.2015 / 18:12
1
answer

Retrieve the last saved photo and insert into an imageView every time the activity is started

I'm doing a job and I created a page that simulates a profile, so when a user is logged in, he can enter that page and take a picture to be saved there. So as soon as the photo is taken the imageView receives it, after the user leaves the profil...
asked by 21.06.2015 / 20:42