Tagged Questions
-7
votes
1answer
30 views
Reading a single file with Multiple Thread
I'm new to programming java threads. I need to read a single file with multiple thread to reduce the time of file reading operation in java.
For example:
file has 10 lines.
1st thread read 3 ...
2
votes
2answers
70 views
when to use Thread, interrupt and join
i am doing a sleeping barber prob. So, first i create 10 customer threads with 2 sec "sleep" between each other. now, the first client gets hair cut, means sleeping 5 sec.. we have waiting room for ...
1
vote
4answers
47 views
How does Java Synchronized compare locked objects?
I want to lock an object over multiple API requests such that only one request per user can enter a block of code.
Does synchronized(obj) lock based on the object's reference or its hashCode() ...
-1
votes
3answers
52 views
Which class to use for this static method, StringBuffer or StringBuilder?
For the following code, which class should I use in a static method, StringBuilder or StringBuffer? Based on the API, StringBuffer is thread-safe, but StringBuilder is not.
public static String ...
-5
votes
0answers
30 views
Main activity shuts down in my phone when i have a connection error [closed]
I have an app that i am writing, that is implements a timer every 30sec and after that it has thw main activity that is doing a job. the timer and the main are doing some connections with servers. ...
0
votes
1answer
20 views
Java - RunnableFuture and SortProcessor
I'm studying some code an here is a method, I 'm not quite sure about what it does:
1) There is a RunnableFuture, why is it assigned a FutureTask, why not FutureTask = new Futuretask?
2) What is ...
-3
votes
3answers
74 views
Problems with threads
I'm newer with Threads and I need to fix this error could you help me?
Sorry was my fault this is what I have to do:
This web application must execute 1000 games and show the output results.
My ...
1
vote
3answers
23 views
How do I schedule a print statement upon completion of 4 independent threads?
I have a simple java application which calculates prime numbers up to a certain user-given number and prints out the numbers. I've built upon this to include four separate threads which iterate ...
-1
votes
1answer
29 views
My multi threaded server is not working
Hi i am trying to make a multi threaded server client app where the server resends an upper cased version of the string sent by the client, here are my three classes:
The server class:
package Q2;
...
2
votes
2answers
37 views
ZeroMQ multithreading: create sockets on-demand or use a sockets object pool?
I'm building a POC leveraging ZeroMQ N-to-N pub/sub model. From our app server, when a http request is serviced, if the thread pulls data from the database, it updates a local memcache instance with ...
0
votes
1answer
46 views
Displaying correct information in JPanel
I'm having trouble updating JPanels with new data. I'm working on a game, the basic concept of what I'm trying to do is load a player and display the items he holds in a JPanel (set out in a box ...
0
votes
2answers
40 views
Thread nullpointerException QuickBlox “muc + chat”
Good evening I have a problem with the API QUICKBLOX, when I put "MUC" I jump rather strange error, and I don't know why.
public class MyChatController {
// ================= QuickBlox ===== Step 8 ...
0
votes
0answers
16 views
Alternative to sharing hibernate session between threads
I am working with Spring 3.0.7 / Hibernate 3.5.0.
I have some code that works with hibernate entity. It works ok. The problem occurs, when I try to make integration test for this code. Below is the ...
0
votes
2answers
51 views
using threads unable to get the output as expected
I am writing a code in java to print the output as follows
[spirit]
[of]
[wipro]
but i am facing a problem in setting the priorities of the threads and seeing each threads priorty and not getting ...
1
vote
2answers
49 views
How to kill a thread in android?
I've got a background thread running in my application and I need to kill it safely. How can I kill a thread in java other than using a boolean flag? I have read that i cannot use thread.stop() ...
4
votes
4answers
54 views
Getting a value/Returning something each time a thread executes its run
I have 2 threads running. One is a TimeStepThread, the other is a CarThread.
The CarThreadruns every 500ms. The TimeStepThreadruns at whatever interval I give it. Now, each 500ms, the CarThreadupdates ...
0
votes
6answers
61 views
How can I stop two threads colliding when accessing java ArrayList?
I have two threads which both need to access an ArrayList<short[]> instance variable.
One thread is going to asynchronously add short[] items to the list via a callback when new data has ...
0
votes
0answers
36 views
ubuntu kill java thread
I create some threads:
public class NewUser extends Thread{
public int userID;
public long waitingSeconds;
Timer timer;
public NewUser(int UserID, long WaitingSeconds){
...
0
votes
0answers
18 views
Using easymock in multithreading
I want to test that some method would be recalled on failing. Calling executed in separate thread. So I write code like this
final Foo mock = createStrictMock(Foo.class);
mock.bar();
...
0
votes
1answer
53 views
Thread output listener
I need to make a thread that start at swing button push and wait for input from rs232, process it and return String to my variable. The question is how to do that?
it should be something like that:
...
1
vote
2answers
60 views
Wait for specific condition to become true in threads
I have an application that makes HTTP requests to a site, ant then retrives the responses, inspects them and if the contain specific keywords, writes both the HTTP request and response to an XML file. ...
0
votes
2answers
56 views
Multi-threaded bouncing balls, issue displaying balls
I'm trying to use multithreading to draw balls that bounce around inside a JFrame. I can get the coordinates of each ball to update and print out, but I can't get the balls to display. I'm not very ...
0
votes
2answers
38 views
How to close JOptionPane automatically?
I have a Thread running and in the time while the thread working i want to display a JOptionPane.showMessageDialog saying that the application is working and after thread is stopped, JOptionPane will ...
0
votes
2answers
83 views
Java thread switching
I have a program that is supposed to run multiple threads at the same time.
It's a simulation of the card game Uno, and you're supposed to have a thread for each player.
Now here's the catch: ...
-1
votes
0answers
37 views
What's the best practice to control lots download procedure? [closed]
I have a program that need to run lots of thread concurrently.
When I started about 200 threads with 12 ThreadPool, I noticed that system runs at low performance.
Actually lots of my thread in most ...
-2
votes
1answer
36 views
Android send data via socket [closed]
I would like to send a simple date through tcp. I working with threads, but I dont know why but when i try to run my code that is stop imediatelly here is that. I have already set the permissons as ...
1
vote
1answer
27 views
Android : How to synchronized resource in right way
My application sometimes should read and write to file. And this work might happen in multithread, so I should synchronize those resource. Here is my code :
// write to file
FileOutputStream fos = ...
1
vote
2answers
23 views
Using less Timers
It doesn't really lag that much in my game but I know that I could reduce a lot of lag in my game by having less Timer's running. The game have multiple Timer's because it have one Timer that updates ...
3
votes
2answers
70 views
How threads work
I have a problem understanding how threads work:
class ThreadTest implements Runnable{
synchronized void methodA(long n){
for (int i=1;i<3;i++){System.out.print(n+" "+i)}
}
...
0
votes
1answer
39 views
Wait for a thread before continue on Android
I've one thread, but i'd like to wait for it to finish before continue with the next actions. How could i do it?
new Thread(
new Runnable() {
...
1
vote
1answer
79 views
Regarding same Runnable reference on Multiple Treads [duplicate]
When we call start() on a Thread by passing a Runnable object as argument, can we pass the same Runnable reference to start multiple threads?
public class MyMain {
public static void ...
0
votes
1answer
21 views
how to stop a process when another is running java android
i am doing an app in android that connecting with servers and downloading some chunks.
now i want to have another one process doing other job. here is my code
class RemindTask extends TimerTask {
...
2
votes
3answers
83 views
How to make the main end last?
How to make the main processs ended last?
For example I write some code, which created one Thread: Test, who created another three threads - Test2, but main finished before Test started.
public ...
5
votes
3answers
79 views
Thread behaving strangely in JUnit
I'm trying to write a unit test that requires mulitple threads. However, it seems that the threads just stop part way through execution. Consider the following code:
public class Test {
...
-1
votes
0answers
49 views
Regarding Thread Synchronization [closed]
Handling of Socket Connection using Threads of same process...?
Thread Invoking Code:
clientSocket = echoServer.accept();
numConnections ++;
CM_Timestamp_Generator oneconnection =
new ...
2
votes
2answers
49 views
How do I stop mp3 files being played multiple times at once?
I am trying to play an mp3 file on button press or selection from a list (which I have managed successfully). However, I cannot seem to stop the song being played multiple times on the same button ...
8
votes
4answers
139 views
Is volatile read happens-before volatile write?
I try to understand why this example is a correctly synchronized program:
a - volatile
Thread1:
x=a
Thread2:
a=5
Because there are conflicting accesses (there is a write to and read of a) so in ...
1
vote
2answers
68 views
Optimizing number of threads dynamically
I have two IO intensive processes that don't do much computing: one is getting and parsing a webpage and the other is storing some data obtained with the parsing in a database. This is going to repeat ...
-4
votes
2answers
50 views
how to make a global variable with a lock that used by two threads [closed]
How to make a global variable with a lock that used by two threads? When the first thread the variable is locked and changed, after the 1st thread finished the second thread can take the variable!
0
votes
3answers
69 views
how to send data from thread to main activity java android
I have a thread that i want to make some calculations and after that send it to the main activity of my program. how i can do that?
the thread is
class RemindTask extends TimerTask {
public ...
1
vote
2answers
102 views
Java multithreading: positioning of methods
I've written a plugin for a program which logs the activity of the user. If the user presses a button and thus triggering an action, some stuff should be written to the database. This process should ...
1
vote
0answers
73 views
Calculating matrix determinant
I am trying to calculate the determinant of a matrix (of any size), for self coding / interview practice. My first attempt is using recursion and that leads me to the following implementation:
...
2
votes
3answers
112 views
Threads Multithreading
The question is as follows:
Three threads are started simultaneously as follows:
t1.start();
t2.start();
t3.start();
The output of the first thread(t1) should be the input to the second thread(t2) ...
0
votes
6answers
65 views
setBackgroundResource doesn't set the image
Handler hnd = new Handler() {
@Override
public void handleMessage(Message msg) {
int id = sequence.get(msg.arg1);
if(msg.arg1 % 2 == 0) {
...
1
vote
3answers
72 views
Creating a ConcurrentHashMap that supports “snapshots”
I'm attempting to create a ConcurrentHashMap that supports "snapshots" in order to provide consistent iterators, and am wondering if there's a more efficient way to do this. The problem is that if ...
0
votes
2answers
33 views
Server-Client NTP project - NullPointerException/SocketException issues
I have this code about a Server-Client NTP project I'm working on... and I get a "java.lang.NullPointerException" when I run it...
-NullPointerException fixed... I initialize the socket but I get ...
-2
votes
1answer
16 views
NTP project in java [closed]
I'm sort of making a Network Time Protocol (NTP) project in java and I'm asked to make at least 3 clients connect to a server and get time with fixed delay and stuff.
My question is how can i make a ...
0
votes
2answers
44 views
Android TextView.setText() invoked & returned before Thread.sleep() blocks until sleep() returns. Why?
In the Android framework, if a TextView's setText() method is called, and after it returns Thead.sleep() is called, then the screen of the device does not display the given text until after sleep() ...
0
votes
1answer
28 views
How to start and stop a process in a java program while waiting other method start and stops every 3 seconds
hello i have a method that i want to call every 3 seconds to doing some calculations and after that the result will going on to a new method and doing its work while the first method it stops
...
2
votes
2answers
87 views
Why is threading works on a single core CPU?
To better understand Threading in Java, I wrote the following code
public class SimpleRunnableTest {
public static void main(String[] args) throws InterruptedException {
long start = ...








