Java is an object-oriented language and runtime environment (JRE). Java programs are platform independent, because they are compiled to bytecode and their execution is handled by a Virtual Machine called the Java VM or JVM.

learn more… | top users | synonyms (5) | java jobs

0
votes
0answers
2 views

JTable fails to sort Integers and Double values properly

I have read several questions about this: Problems with JTable sorting of integer values JTable + Sorting specific field but I still can't manage to do it, for some reason. I have written this: ...
0
votes
0answers
6 views

Capturing a user's intent with concurrent graph modifications

I have a graph data structure that can be concurrently modified by two or more threads. Each Vertex contains a Set of Edges, and each Edge has two Vertex fields as well as auxiliary information (e.g. ...
0
votes
0answers
9 views

How to capture the mybatis exception “org.apache.ibatis.exceptions.PersistenceException”?

Here is the code sample, I want to capture the exception throwed by mybatis: String resource = "com/sureone/server/db/mybatis-config.xml"; Reader reader = null; try { reader = ...
0
votes
2answers
16 views

I have changed memory size in eclipse but I'm still getting the java.lang.OutOfMemoryError

I'm running a Java program which reads line by line from a file as big as 1.2 GB and at some point it tries to put them in a hash. After some time after calling the taxhash.put(tmpgi,tmptax) it gives ...
0
votes
0answers
5 views

Get Resource Image and Use As JFrame Background

I would like to ask for some help taking a resource image, and setting it as the background of the JFrame. I want to scale the image to be centered in the frame. How can I do this? I have looked on ...
0
votes
1answer
38 views

If statement on string wont work

Hello so im working on an app for windows(C#) and android(Java) that the two communicate through TCP and i have got them both sending each other strings but when i want to see if the received string ...
1
vote
1answer
13 views

What are the official resources for the Java EE APIs spec?

I know a few official sources like the java Java EE 6 tutorial. But I was wondering, which one are the official sources for properly learning the spec of every API and any other resource related to ...
0
votes
1answer
21 views

Most efficient/Safest method of creating new instance of random class

I'm writing a 2d java game and I'm randomly spawning in creatures as the map scrolls. However, I need to randomly choose a creature type - which means I need to randomly choose a class from a list and ...
1
vote
0answers
15 views

Backspace example

I want to type some counter number in same location when new one came program need to change previous value to new value without going to new location I tried this but it does not help me for(int ...
1
vote
0answers
16 views

What's the defference between getBytes and serialize with String?

Just as the title says, I can't differ getBytes[] from serialization mechanism with String. Below is a test between getBytes[] and serialization mechanism: public void testUTF() { byte[] ...
0
votes
1answer
13 views

hibernate two tables per one entity

I have one entity - "User" Its described by User.class. Hibernate create one table per entity, so when i call session.save(user), my data is always save to this table. Now i need another table for ...
0
votes
1answer
15 views

synchronized between the main thread of android and another thread

Android by design doesn't allow network on the main thread it can be forced but its not a good practice. So I want to synchronized the main thread and one other thread so I can get the response from ...
0
votes
3answers
44 views

What is Comparison Failure, null expected in JUnit?

I am trying compare two strings using assertEquals(s1,s2); I am getting Comparison error<> null expected in it. Help me out in this.?
-4
votes
0answers
25 views

HashMap<K,V>.resize(int) line: not available [closed]

I'm running a Java program which reads line by line from a file as big as 1.2 GB and at some point it tries to put them in a hash. But after some time after calling the taxhash.put(tmpgi,tmptax) it ...
-1
votes
0answers
15 views

How to save an ArrayList in Play?

This might seem like a very basic question, but I have a model (User) which I want to store an ArrayList of Strings (they are the id's of other users). I declare the List like this: public ...
0
votes
0answers
18 views

difference between Java TCP Sockets and C TCP Sockets while trying to connect to JDBC

My problem is that C sockets look to act differently than Java sockets. I have a C proxy and I tested it between a workload generator (oltp benchmark client written in Java) and the JDBC connector of ...
1
vote
0answers
14 views

Tesseract read an image online?

Im about to start working with tesseract, tess4j to be exact, and im going through the api docs. I havent come across any way to read from a webpage. Basically the program opens a webpage that is ...
0
votes
1answer
17 views

When processing a csv String with an empty final field, myString.split( “,” ) returns incorrect number of array entries

I'm processing a certain line read from a .csv file using String.split(",") and finding that the final empty string after the last delimiter is not making it into the array created by the split ...
0
votes
0answers
6 views

Box2dLights on libGDX android project

I tried to import the jars of Box2dLights to my project in libgdx, I configure the Buildpath and errors always happen. Where I need to put the jars? Someone know please? thanks : )
0
votes
0answers
11 views

How to place admob above all LinearLayouts?

I'm trying to put my admob SMART_BANNER above all other elements in XML, right now i managed to place it above the paint_view but i need it to take all the screen width at the top, Here is my XML ...
0
votes
1answer
20 views

continuous data through a socket

lets say I had a socket that needed to send continuous data at random (but small) intervals, lets say about 20 objects a second, for any span of time. I am for-seeing possible issues that I am not ...
0
votes
0answers
24 views

Margin with a JPanel inside another JPanel

I am using JPanel to simulate squares. The idea is to put a sort of filter in front of a JPanel. The first JPanel contains an ImageIcon and a background color. A second JPanel containing a background ...
-2
votes
1answer
33 views

Java 2D Terrain Generation [closed]

I've looked at so many tutorials, and I still don't understand how to go about this. I want to include different biomes, caves, etc. in my terrain generation, and I've tried using Perlin Noise with no ...
-6
votes
0answers
33 views

Passing a HTML page to a String variable [closed]

What I am trying to do, is the following: I want to copy the HTML from my page and save it into a String variable in my code. Later I will send it by email, to the customer. Anyone knows a way to do ...
1
vote
2answers
16 views

Running opencv using java error

I have started to learn OpenCV using JAVA language. I tried to run very simple code borrowed from http://docs.opencv.org/2.4.4-beta/doc/tutorials/introduction/desktop_java/java_dev_intro.html and ...
1
vote
2answers
26 views

Call C# dll from Java on Google App Engine

Does anyone know if it's possible to invoke C# methods/classes (from a dll) in a Google App Engine Java app (server side)? If it's possible, do you have any idea how it could be achieved? EDIT - Any ...
0
votes
1answer
12 views

java htmlunit failing to load javascrip

What is causing this error, and how do I fix it? WebClient webClient = new WebClient(); HtmlPage page = webClient.getPage("http://stackoverflow.com"); Error message May 25, 2013 10:34:12 AM ...
0
votes
0answers
15 views

SetVisible is not showing up a second JFrame

I've created a JFrame that when performs a button action calls a second JFrame that is instantiated in the constructor of the first JFrame and only setVisible(true) in this performed action but is not ...
1
vote
3answers
62 views

How to terminate program?

How would you make a Java program terminate itself when 'ESCAPE' is pressed? I have tried this: public class Main { public static final int i = 12; public static void Exit(KeyEvent e) { ...
-4
votes
2answers
58 views

how do you return a value in java function

I really need help with this java class: My class is as follows: public class Date { // fields private int month; private int day; private int year; // constructor ...
-2
votes
0answers
18 views

How to change oracles autocomplete example in jtextarea to use it in jtexfield?

I need to use autocomplete in jtextfield. I found oracles example for jtextarea, but I can't figure out how to implement this in jtextfield. Help me please. ...
0
votes
1answer
33 views

Why Do the JButtons not work?

I am creating the game pacman and if you get killed by the monster it takes you to a questions panel So I am asking some questions and I have JButtons that are the multiple choice buttons such as A, ...
0
votes
3answers
34 views

Cannot convert from long to int, why can't I round this double to the nearest int using Math.round

why can't I round this double to the nearest int using Math.round, I get this error "cannot convert from long to int" Double bat_avg = Double.parseDouble(data[4])/Double.parseDouble(data[2]); ...
-2
votes
5answers
65 views

Why Won't This Return Method Compile?

I am trying to make a simple program where you can move one space in four directions by typing in commands. Here is my code: public class Map { public int x; public int y; } and import ...
0
votes
2answers
59 views

what is causing Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: 5

public static void sumrowsandcols(int[][] a) { int[] sum = new int[5]; int i, j, x; // Sum of rows for (i = 0; i < 5; i++) { for (j = 0; j < 5; j++) { sum[i] ...
0
votes
1answer
13 views

Android DefaultHttpClient() Post Request

I want to send a POST request with two parameters from a JsonObject to an python API which response with True or False, but it doesn't work at all... My Code: // Create a new HttpClient and Post ...
0
votes
0answers
21 views

How to replace single row in Matrix using Jama ?

I trying to replace a single row using Jama . I tried it by using setMatrix like this - double[][] myArray = { { 1, 1, 1, 1 }, { 1, 1, 1, 1 }, { 1, 1, 1, 1 }, { 1, 1, 1, 1 } }; // ...
1
vote
1answer
15 views

What happens to terminated tasks in a ScheduledExecutorService?

I am currently modifying an application to use a ScheduledExecutorService in place of a Timer and I don't know what to do with my old Timer.purge(). How are things handled with an Executor? Do I have ...
0
votes
0answers
14 views

Downloading a file continuously takes focus

I am making a Minecraft Launcher, and so far it is working pretty well, apart from the fact, when downloading the pack it constantly takes focus, rendering my pc unusable until the download is ...
0
votes
0answers
7 views

Determine whether JRE is installed using Install4j

I have created an installer for my Java app using Install4j. I want to check whether JRE/JDK is installed on my system or not. This checking will be performed at the start-up of the installer. So ...
0
votes
1answer
29 views

Decimal Format, says it needs to be a string?

I'm getting the error "cannot convert from String to Double" when I run this code, any ideas? DecimalFormat df = new DecimalFormat("##.###"); String [] data = null; data = str.split(" ...
1
vote
0answers
20 views

Inner workings of JPA

I really don't get it. If I persist a new item then use it to get the autogenerated key, it fails: class BookManagerBean { @PersistentContext EntityManager em; @Override public void ...
0
votes
1answer
12 views

Which platform as a service/infrastructure as a server provider gives the most backend resources for their free tier?

I realize there is quite a difference between IaaS and PaaS, but there is some overlap. I'm particularly interested in getting the most number of "backend" server instances at the free tier (or for ...
0
votes
1answer
18 views

how to specific the mysql jar in the classpath from command line?

I am try to run the mybatis tool from command line,and I already specify the mysql path, but it still told me com.mysql.jdbc.Driver not found! "Caused by: java.lang.ClassNotFoundException: ...
0
votes
1answer
20 views

Processing/Java - Key pressed/Key released

I'm building an application on Processing using NyARToolkit, but my question is not directly about NyArToolkit but about a key released() method. The thing is, I show a card and then I can do a few ...
0
votes
0answers
7 views

GPG encryption issues on Windows 2008 Server using Java

I'm trying to encrypt a file using GnuPG, calling from a Java web application with the command C:\GnuPG\gpg.exe -r 4B0A3A48 --always-trust -e D:\APACHE~1.29\webapps\Apliacion\salidas\archivo.lis ...
0
votes
0answers
21 views

Java, drawing all pixels on the screen with different colours with maximum performance

I'm trying to draw a self-created 'image'(most likely a bufferedImage I reckon) using an array containing the colours in the format of hexadecimal numbers. And I'm talking about fullscreen, meaning ...
0
votes
3answers
66 views

unable to find problems with this piece of code

I have this piece of code, I think I have all the braces covered. Still getting braces not closed error. When I put more braces, then gives me something else. Can you anybody tell me what I am doing ...
0
votes
0answers
7 views

get a property value of an individual jena api

i have my class "Alert" witch contain as individual Alert_1 Alert_2 Alert_3 and each indivisual has properties witch contains values for exemple Alert_1 : hasanalyser : analyser546 ...
0
votes
0answers
12 views

Blogger java api reads only the last 25 posts

I have this code to read posts from a feed with the Blogger Java API public static void printAllPosts( GoogleService myService, String blogId) throws ServiceException, IOException { ...

1 2 3 4 5 8463