0
votes
0answers
22 views

socket connection reseting after client disconnect

Good day all I have a java server which can support multiple clients via threads. But after my first client disconnects my server restarts and and keeps on restarting. Here is my code for the server ...
0
votes
1answer
25 views

Android, reset a value everyday

I am developing a timer app that works in block of times (pomodoros) and I'd like to have a variable that keeps track of the number of blocks passed everyday, so it keeps counting within the same day ...
1
vote
1answer
56 views

How to restart Java Application on command? [closed]

I'm working on an application with the ability to completely log off and restart on command, but I'm having trouble finding out how to do this. Basically, I want to run the entire program when a ...
0
votes
2answers
224 views

Primefaces datatable Reset and Reload data

I am not sure how to reset the primefaces datatable and then reload data into it. Any ideas? As soon as I click "Teacher" or "House Leadership Team", i send a ajax call and then I would like to ...
-1
votes
2answers
55 views

Reset/destroy object instance

I am translating PHP code to JAVA code. PHP code snippet: class Population { private $ind; public function __construct() { $this->ind = array(); } ...
0
votes
1answer
30 views

Button resets when opening app via notification

I've created an application where you press "start logging" which starts a service that periodically logs data. The button changes to show "stop logging". You then minimize the application and allow ...
0
votes
2answers
48 views

Java Window Control

Not sure exactly how to word this, but I have created a BlackJack game that works. The dealer and User are delt two cards, you can hit or stay, it works fine. However, after the hand ends I want to ...
1
vote
2answers
572 views

Forgot Password Request (Java) [closed]

Quite a common subject for most of you guys. I'm building a webapp in Java, using Spring + Spring Security + Hibernate + MySQL + etc... I'm in the process of implementing the "reset password" ...
0
votes
2answers
92 views

I'm getting confused by the output because it won't let me recreate an object

I'm trying to solve a problem where I try to reset my deck of cards once I've draw all cards. When I reach the end of the deck I should indeed get message Deck is empty! You must recreate and ...
2
votes
1answer
81 views

Web Java variables reset

I have huge problem. I made website with hibernate struts2 with using of Ajax in java. Basicly when i create, modify any local content (in .java), like assign value to int, at next inspection its ...
1
vote
1answer
50 views

Creating a list in Java of parents (using recursive method)? List is being reset?

So I have a pet with the field "age" and pets are linked to other pets by parentage (which is a second field). The parents' ages are 6 and 7, and the grandparents ages are 16 and 17. I want to put ...
0
votes
1answer
235 views

Why does java (minecraft) appear to be resetting my variables? [closed]

I am making a minecraft mod, which is Java code, and I am noticing a strange behavior where a String seems to be losing it's data. I am new to Java so I don't quite have a strong understanding of how ...
7
votes
1answer
962 views

Java Pattern Matcher: create new or reset?

Assume a Regular Expression, which, via a Java Matcher object, is matched against a large number of strings: String expression = ...; // The Regular Expression Pattern pattern = ...
0
votes
1answer
397 views

Resetting a spinner after removing values

I am trying to repopulate a Spinner after values have been removed. Currently the app sets up a Spinner with a list of string values and then as the app is used some of these values are removed from ...
1
vote
2answers
2k views

need help on reset/clear jcombobox values

im using below coding to add values to a jcombobox using another jcombobox and i need to add the values to the jcombobox2 according to the one get selected in the jcombobox1 without appending values ...
-2
votes
1answer
116 views

integer in java (android) is setting it self to 0 [closed]

amnt = Integer.parseInt(ammountedit.getText().toString()); if (amnt >= 1){ if (amnt > crates){ amnt = crates; } ...
3
votes
4answers
279 views

Java: Double-Click a JSlider to Reset

I have a JSlider that sets the speed of my metronome, from 40 - 200, where 120 is the default, in the middle. When the user clicks the metronome button, the metronome plays at the speed displayed on ...
1
vote
1answer
623 views

Listening for zoom reset event in JFreeChart

How can I listen to JFreeChart's zoom reset event?
1
vote
1answer
224 views

Closing/Clearing Jni connections

Anyone knows if there's a way to stop/reset the connection between a Java application and it's Jni linked C++ source... ? I tried resetting the object by calling its constructor, but it doesn't work ...
0
votes
0answers
375 views

Start and Reset Button

How I could create a Start Button, which start my calculation and repaint in Java(Eclipse)? I try it with if(permission==true) but this do not work. The same is the with the Reset Button. In class ...
0
votes
1answer
72 views

How can I wipe the JS environment in Rhino within the interperter?

I have a problem wherein I am loading a number of JS files and then executing a function in JavaScript, then I want to wipe the global namespace of the loaded objects, and load a different set of JS ...
1
vote
4answers
393 views

Copy the start of an InputStream

I want to copy the "start" (i.e., first N characters) of an InputStream and then reset the stream to its start, so that it can be reused. Using mark() and reset() does not work for all types of input ...
0
votes
3answers
808 views

static variable is being reset for unknown reason

I have a class called 'DataReference' which has a number of static variables which are accessed by various classes throughout program execution. I have one variable 'public static int particlePercent ...
0
votes
2answers
618 views

Spinners in List View

I'm working on an app to identify trees. Therefore, I let the user answer questions about given characteristics, by choosing the appropriate characteristic out of a spinner. Because a tree has many ...
0
votes
1answer
565 views

Reset ObjectOutPutStream to update new object state?

I want to reset ObjectOutPutStream to update the new object state. But why it doesn't effect. The below code outputs "BEFORE" instead of "AFTER"? What's wrong with my code? package test; import ...
1
vote
2answers
158 views

Is there a java.sql.Connection class's equivalent function for SQL Server sp_resetconnection functionality?

Imagine a simple connection pool for java.sql.Connection. After the connection has been released back to the pool we have no idea if any transactions are open, any temporary tables created, etc. ...
3
votes
2answers
189 views

Can I perform successive mark operations on an InputStream in Java

I'm trying to build a simple parser, and since InputStream doesn't have some peek-like method, I'm using mark and reset. But I suspect that successive calls to mark, invalidate the previous ones. Is ...
2
votes
2answers
759 views

Java void sendUrgentData() throws SocketException

I am trying to use the sendUrgentData() void to determine if a connection is still alive. The data send through this void will be ignored on the server side, but when a connection is lost, ...
3
votes
1answer
18k views

How to clear the JTextField by clicking JButton [duplicate]

Possible Duplicate: JButton needs to change JTextfield text How do I clear a JTextField when a JButton is clicked?
11
votes
2answers
1k views

How to Re-Execute Log4j “Default Initialization Procedure”?

At runtime I often create/modify log4j Loggers, Appenders, Levels, Layouts, and time to time need to reset everything back to defaults. Log4j system has well defined Default Initialization Procedure ...
2
votes
2answers
413 views

How to debug code for reset functionality in Java GUI application?

I am writing some simulation code and managed to get my model running as expected. However when I reset the model (it sits on top of a large amount of code written by others that i don't have access ...
0
votes
4answers
3k views

Reset time part of Calendar instance in Java

There is Java code,which is ran on 2 different environments and inserts records with JdbcTemplate to DB. Results of its running are different for both envs. Particularly,for Date fields. On first ...
1
vote
2answers
123 views

problem calling java function, only first finds matches.. close? reset? dispose?

I've got this java function that extracts strings from Inputstreams and returns a List. It uses java.util.Scanner and java.util.regex.Pattern. Problem is, it only seems to work the first time I call ...
0
votes
1answer
606 views

How to reset JLabel constraints after initializing it?

I initialize a JLabel in Java frame like this : contentPane.add(myLabel, cc.xywh(1, 1, 31, 6, CellConstraints.DEFAULT, CellConstraints.BOTTOM)); But before showing the JFrame i make a small ...
1
vote
2answers
443 views

how to reset the interactions window in dr java? [duplicate]

Possible Duplicate: how to create a counter in a dr java program this is the code that I am working on... I would like to know how to reset the interactions window after every question is ...
0
votes
2answers
5k views

Reset timer

I have tried to reset the timer based on the current time after clicking a button, but it doesnt work. Help :-( private long startTime = System.currentTimeMillis(); Timer timer = new Timer(1000, ...
1
vote
2answers
2k views

Lightweight java.io.InputStream implementation that supports mark() & reset()

Good day, Currently, we are using ByteArrayInputStream for our reset-able InputStream. My problem with it is that it consumes a lot of memory (it loads all the bytes it represents in memory unlike ...