0
votes
1answer
36 views

Resuming a Java program when the computer sleeps?

I have a Java program that has a loop in it that checks for new messages every twenty seconds. Example: while (true) { Thread.sleep(20000); newMessages(); } This works when the computer is ...
0
votes
5answers
76 views

Thread Runnable - stop and resume

Hello i'm new in Android(Java), and i have a problem with the use of thread I define e new Thread timed (every 5 seconds) inside a class of my android Project. The "mContinueThread" variable is used ...
0
votes
1answer
74 views

Is there a java equivalent of vb on error/ resume next pattern?

In VB, for error catching there is Public Sub MySub() On Error GoTo Errr 'do stuff Errr: 'handle error Resume Next End Sub which uses the magnificent Resume Next command. In ...
0
votes
3answers
184 views

Pausing/resuming multiple threads in java

Trying to write a program that will run, suspend, and resume 3 threads. here's the coding: class Connectthread implements Runnable { public void run() { for(int j=0;j<90;j+=10) ...
1
vote
1answer
80 views

Handle power loss when processing MySQL query on Java?

I'm building a Java application that uses a database. I used MySQL for database and JDBC for its connection. My application will process a lot of data so it will take much time and I'm afraid when ...
3
votes
1answer
165 views

How to get a string value from a thread at fixed intervals while able to pause/resume?

I have made a small swing application for my personal use. This app connects to internet, retrieves a text file, displays its contents in a jTextArea and saves the text file locally (in my hardisk). ...
3
votes
2answers
2k views

JLayer - Pause and resume song

I've noticed that a lot of topics were about pausing/resuming an MP3 using JLayer, so in order to help everybody, I've made a whole entire class designed just for that! Please see the answer below. ...
5
votes
2answers
190 views

Java resumable hash computation

I would like to achieve resumable on-the-fly hash generation of some file being uploaded on the server. The files are big so I am using the update(byte[]) method of MessageDigest class (as described ...
5
votes
1answer
1k views

How to Suspend and Resume Threads in android?

I just noticed that suspend and resume in android thraeding has been deprecated. what is the work around for this or how can I suspend and resume a thread in android? any help would be much ...
1
vote
3answers
138 views

How to immediately pause another Thread

I've looked at a number of threads but I haven't found what I wanted so here goes: I'm writing a game in which a thread - GameThread - loops continuously, updating all my sprites, rendering them, and ...
3
votes
2answers
700 views

Continuations or suspend and resume in the Servlet 3.0 API for communication with the client?

We are in the process of migrating a Swing two tier application to a web application (tomcat, Spring MVC, extJS if it makes any difference). We found code like this in the application (simplified ...
0
votes
2answers
451 views

Android to computer FTP resuming upload strange phenomenon

I have a strange phenomenon when resuming a file transfer. Look at the picture below you see the bad section. This happens apparently random, maybe every 10:th time. Im sending the picture from ...
1
vote
2answers
99 views

Application resuming through the Notification bar

I have an application that starts a timer and an ongoing notification. Whenever I click on the notification though it doesn't continue the old time, but instead creates an identical activity on top ...
0
votes
1answer
1k views

How to pause and resume android game?

I am making an android game called Connect4. I am facing a problem relating to pausing and resuming the game. When i run the game on a real device(on a Galaxy S2), while running the game, when i press ...
0
votes
1answer
838 views

Making an Android App (Java) 'Wait' Until Something Finishes

I have this app that originally has you take a picture, shows you a progress bar, and uploads it to a website. What I want to add is something so that before the progress bar shows, an Intent starts ...
0
votes
3answers
94 views

Deleting file if it crashes my app

Does anyone know how to delete a file if it crashes my app on the NEXT run? Eg. My app browses through an array of pictures. One of them crashes my system and on my next run i want it to delete that ...
0
votes
3answers
327 views

How to catch event of coming back to an activity after hitting back

I have a main screen for my application which then leads to different screens, from each of those hitting back takes you back to the main screen. I want to do some stuff every time a user is "coming ...
1
vote
1answer
1k views

How to resolve quickly the pause and resume functions in Libgdx

What code I need to write in the pause() and resume() functions in libgdx for Android? @Override public void create() { // TODO Auto-generated method stub } @Override ...
1
vote
2answers
1k views

Problem with getLastNonConfigurationInstance() - Seems to only ever return null

public class XPBN extends Activity{ private Map _map; @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); ...
5
votes
2answers
5k views

Java: resume Download in URLConnection

Hi I wrote a program that downloads some files from some servers. Currently program works properly. But I want to add resume support to it. I'm doing it like this But the result file is corrupted: ...
4
votes
3answers
266 views

Java threading problem

I'm using multiple threads in my application. Basically I have a combo box and upon selecting Inbox, p1 resumes and p2 is suspended and upon selecting Send, p2 starts and p1 stops. Below is the code ...