Questions tagged as 'java'

2
answers

Ackerman Recursion

I try to write a recursive solution that calculates Ackerman's function: For the values of m and n given, the function of Ackerman is described as follows: A(m,n) = n+1 , si m = 0 A(m,n) = A(m-1,1) , si n =...
asked by 30.10.2016 / 13:51
1
answer

Switch from milliseconds to a time in hours, minutes and seconds in Java

I have a variable in String and it is the milliseconds that it takes to get from one point to another. I need to put that value in Hours: Minutes: Seconds format I am using Java 6 and objects Date , but when I send this value to...
asked by 10.11.2016 / 15:14
1
answer

Assign column names to the JTable class

I have a simple application where an array of data passed to a JTable , I specify the names of the columns of the table, but only the data is displayed but not the names of the columns. Here the code: public class TableTest extends JFrame...
asked by 10.11.2016 / 19:57
1
answer

How to use executorservice

I have an arrayList, where I store 12 values [1 or 0], depending on whether the error is activated or not (0 being deactivated and 1 activated). public void rellenar() { cont = 0; list = new ArrayList<String>(); list.add(0, g...
asked by 09.11.2016 / 17:14
1
answer

Save parts of a String to variables using regular expressions

I need to save parts of a String in different variables using a single regular expression, the string is the following and it can vary, but the structure will always be the same (this line is stored in the variable strLineProcess): Skype.exe p...
asked by 09.02.2017 / 13:29
2
answers

How to copy content from a zip to an android directory?

Hello everyone. Ask this question so that you can give me a hand and guide me on my way. My problem I want to be able to decompress a zip in a folder or directory on the sdcard, but my code has not hit the target. Its flaw is tha...
asked by 09.02.2017 / 22:26
1
answer

How to save image in Servlet project?

I want to save an image in a folder within the project. I have a jsp with a form: <form action="ParametrosServlet" methos="POST"> Logo: <input type="file" id="logo" name="logo" accept="image/*">...
asked by 09.02.2017 / 20:18
1
answer

How to read emails sent from gmail using javamail?

I have a problem in which I have to read the emails that I have sent. That part I do, but only those that I sent by javamail and do not read all those that I have sent, just read me one. Properties p = new Properties(); p.setProperty("mail.st...
asked by 29.03.2017 / 23:51
2
answers

NullPointerException when using getSheet ()

I am trying to edit an excel file with apache poi in the following way: public void generarOrdenDePago(Cliente cliente, Periodo periodo, OutputStream outputStream) { try { InputStream in = new FileInputStream("ordenPagoLimpia.xls...
asked by 30.03.2017 / 21:33
1
answer

Difference between Filter and Interceptor in Spring

I really do not understand what is the purpose of each one since they perform very similar tasks. Could someone explain to me what is the difference between an Interceptor and a Filter in Spring?     
asked by 31.03.2017 / 00:34