1
vote
4answers
536 views
What is a good open source J2SE JTA TransactionManager implementation?
Basically, what it says on the tin; I need a JTA implementation useable in a J2SE application, ideally one that doesn't carry too much of a framework burden with it.
0
votes
5answers
100 views
[Java(J2SE)] Store data(strings) in database
I have a Vector < String >. Now i want to store those Strings in database. But i have one "but"! The program user mustn't install anything else except J2RE, he will just copy pr …
0
votes
14answers
787 views
What should a junior Java developer know?
What skills should a junior Java developer have? I'm also interested in iPhone (Objective-C) development.
What technologies/languages should I know to get a position as a Java dev …
1
vote
3answers
180 views
What is the best way to compile J2ME and J2SE apps from the same codebase?
Hi all,
I'm trying to build an app for both J2ME and J2SE. The presentation code will obviously be different, but I'm hoping to keep the logic common, as much as possible.
My pla …
2
votes
1answer
53 views
Running a JavaSE number cruncher in a cloud
I've spent a long time building stochastic simulations in Java. They work great, but the company hardware is unreliable, getting old and unlikely to be replaced soon.
The simulat …
2
votes
3answers
368 views
Calculate minimum area rectangle for a polygon
I have a need to calculate the minimum area rectangle (smallest possible rectangle) around the polygon.
The only input i have is the number of points in polygon.
soryy for the in …
1
vote
1answer
88 views
Java Execution Context Class Explain
I wanted to grab the concept of "Execution Context class" . I'm refering to this post at http://tinyurl.com/ryjn5o . Can anyone enlighten by explain more on how to create such cla …
1
vote
2answers
129 views
FATAL ERROR in JNI code - presumably in JDIC library
I am using a Java coded desktop application to track my time on projects.
I used it until the IT did a new setup on my station. And now I cannot launch this application.
I got a …
1
vote
6answers
106 views
Is there something in j2se or Jakarta commons thats converts a number to an array of digits?
I hate to code what is already available. I can't seem to find in Jakarta commons a method that would to the following:
long x= 12345;
int[] digits = toDigitsArray(x); //[1,2,3,4, …
1
vote
1answer
126 views
How to start bluetooth pairing process?
I have an Java application on my PC and database.There are some MAC
and PIN data in DB.
I'm sending messages (now it's text files over OBEX put method, but in
future it will be …
2
votes
4answers
226 views
Java(J2SE) and Bluetooth
Hi.
I want to write some small program. It will run on my computer(laptop) with bluetooth adapter and then discover all the visible bluetooth adapters(phones, printers, other compu …
1
vote
3answers
160 views
How can I work with Novell eDirectory services in J2SE?
How can I work with Novell eDirectory services in J2SE? Will JNDI work with eDirectory? What are some resources I can use to learn about whatever library or libraries you suggest …
1
vote
3answers
353 views
Get Windows Service Pack Version from Java Applet?
Hello
I am writing a Java Applet. When run on Windows, I need to be able to get the clients OS version, e.g. Windows XP SP3 or Windows 2000 SP4.
I can currently use the following …
0
votes
3answers
131 views
Calling the overridden protected method of a class higher up in the hierarchy
Consider the following classes in Java
class A
{
protected void methodA()
{
System.out.println("methodA() in A");
}
}
class B extends A
{
protected void metho …
0
votes
0answers
54 views
Where can i find Code for implementing randomization techniques in Graph Mining.
Hi,
Where can i find code
that will give me an idea for implementing randomization techniques in Graph Mining
Please provide me the links or material
Thanks in advance.
Regards, …
