Tagged Questions
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.
0
votes
0answers
16 views
Jersey JAXB JSON to Java object conversion (Client side)
Note: I tried solutions from Cannot unmarshal a JSON array of objects using Jersey Client already but it does not answer my question.
I'm completely new to Jersey. I've summarized my problem below.
...
1
vote
1answer
13 views
TextField description RichFaces
i'm working with richfaces , i need to show "X" message when the field is clicked like the photo. This is my code in xhtml :
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 ...
0
votes
1answer
38 views
How to parse a text file and create a database record from it
I'm trying to basically make a simple Test Generator. I want a button to parse a text file and add the records to my database. The questions and answers are in a text file. I have been searching the ...
1
vote
1answer
38 views
Builder pattern precision
I'm currently working on the builder pattern. There is one thing that I don't get and it's the following. Let's say I want to create computers, laptop and desktop ones. Should I create a ...
0
votes
3answers
46 views
Adding a method to Java class in different file without extending the class
package com.companyxyz.api.person;
public class Man {
public var1;
public var2;
...
private static void createAuth() {
...
}
// public methods go here
...
}
I want ...
0
votes
0answers
13 views
Java modularizing code
I was wondering the best way to make use of IntelliJ modules in a Java webapp. We are suffering where I work because of circular dependencies and code being used where it shouldn't be. I came up with ...
4
votes
1answer
30 views
Simple Mockito verify works in JUnit but not Spock
Using the most basic example from Mockito's examples page, I am able to run successfully in JUnit.
However, when I run the same test in Spock, it fails.
JUnit/Java version (this passes):
import ...
-3
votes
0answers
24 views
Implementing Eclipse Plugin functionality directly in Java class - not in Eclipse [closed]
Eclipse provides an extension point org.eclipse.compare.contentMergeViewers that allows the Java Source Compare feature to be modified.
I would like to implement my own Java Source Compare, but ...
0
votes
0answers
10 views
Dependencies for jdt.compiler cannot be found
The issue is that it seems impossible to run ASTView from source; I get a NullPointerException, something to do with singletons I think. The solution - or so I thought - was to start a new plugin ...
0
votes
0answers
23 views
Injecting MessageSource into an Enum
I am trying to use an ENUM for a form:select as such:
<form:select path="myEnum">
<form:options itemLabel="resourceBundleLabel" />
</form:select>
With an Enum that looks ...
2
votes
2answers
37 views
GenericJDBCException catched by wrong part of the try/catch block
I have this block of code:
} catch (HibernateException e) {
loginAnswer = new LoginCustomerAreaAnswer(999);
//This function use the error code save inside loginAnswer
...
1
vote
4answers
58 views
array ouput not correct
i am using 2 classes and a bunch of methods to store something in an array then writing it to a file. After i write something to a file, instead of being of the var double,
this is my code:
public ...
0
votes
2answers
35 views
IllegalStateException occurring when similar code dosent create the error
So I am wrote two code fragments one works as intended and the other generates and IllegalStateException error when both to me look like they should do the exact same thing. Why am I getting and error ...
0
votes
0answers
12 views
Quartz Scheduler Timed Delay Between Multiple Jobs in One Scheduler
I have a schedule xml file that lists a series of jobs and triggers for each job. I can have my quartz scheduler read the file and run through the jobs, but I want a timed delay between jobs. Is there ...
-1
votes
4answers
28 views
How to run a custom jar file copy to classpath command using java?
I have a jar file which I'm using to run as an application. However, every time I run my application I need to add -cp "jar name" to compile it and then run the java application.
How can I make a ...
0
votes
5answers
66 views
Inheritance with this and super
Working in Java.
I have an abstract class as such:
public abstract class Foo {
protected Logger log = null;
// other stuff
public boolean isLoggerSet() {
return (this.log != ...
0
votes
1answer
24 views
Unable to run Scala-Neo4j project from command line
I developed a Java project in which I wrote some Scala classes and some Java classes. I used Scala-Neo4j wrapper in the project to write Scala functions for inserting and retrieval of Neo4j nodes. I ...
-7
votes
1answer
27 views
how to rearrange these dates in a file? [closed]
Activity 21: Read a text file with delimiters
Make your own copy of the BirthdayApp project from the Student Share Drive. Open the BirthdayForm class inside the project. Also copy the text file called ...
0
votes
1answer
20 views
How to open a sub window with a simple Link
I want to open with Vaadin a Sub Window with a simple Link. But the only thing a Link accepts is a URL, not a Window-Object. Is there a way to get the following code to work?
VerticalLayout ToDoList ...
0
votes
3answers
39 views
What happens to a static textview during onCreate()
I have a static textview that has a certain default value set in the XML. Later, I set that variable to something else, but whenever the orientation changes, the value of the static variable returns ...
1
vote
0answers
20 views
Selenium in a web service - jar not loaded
I tried to implement a web service in a bottom-up manner. First I created a dynamic web project and implemented a function that uses selenium. I then added the selenium-server-standalone-3.23.0.jar to ...
1
vote
2answers
60 views
Java Encrypting logs
I am currently making a game. I have build logging facilities internally, and there are message types like general, log, exception, send, receive, debug.
The send and receive logs contain the raw ...
-1
votes
0answers
10 views
Slick2D: Applet permissions
When I open up the applet in a browser I get this error in the Java console and it says 'Permission for Applet Refused' and it just stays like that:
This occurred while 'Determining packages to load'
...
0
votes
0answers
11 views
How do you get a ns prefix map from CXF SOAP request?
I'm working with requirements for a SOAP endpoint that takes in an XML object that includes an XPath query. This query is namespace dependent. The Xpath string will have namespace prefixes that will ...
0
votes
0answers
8 views
Jboss OSGI, eclipse gemini blueprint, invalid bundle activator
I am trying to add eclipse-gemini-blueprint to wildfly 7.2 (ex-jboss)
I added the following capabilities in standalone-osgi.xml:
<capability name="personal.org.springframework.aop" ...
0
votes
1answer
14 views
how can i get the PortletRequest
My problem is to obtain PortletRequest from HttpServletRequest
I put this sentence:
PortletRequest request = (PortletRequest) HttpServletRequest.getAttribute();
What should i put into the ...
0
votes
1answer
19 views
How do I discriminate types on the fly with Jackson
I have some json that looks like this:
[
{"type":"child_obj_1", "message": "blah"},
{"type":"child_obj_3", "apple": "red"},
{"type":"child_obj_2", "banana": "fire!"},
{"type":"doesnt_exist", ...
1
vote
2answers
52 views
Closed BufferedReader()?
I've written a code that reads web pages and transfers them into a .txt file. The problem is that the output file (something.txt) is LOCKED (I use OS X if that helps). I figured out that there could ...
1
vote
3answers
46 views
Java: replaceFirst does not work, but replace works on the exact same input?
I am writing a program where a portion of it needs to replace part of the string without deleting duplicates so I am using replaceFirst() which is not working properly.
INPUT:
lock: "O_2_^-^"
str: ...
1
vote
3answers
63 views
java full gc taking too long
I have a Java client which consumes a large amount of data from a server. If the client does not keep up with the data stream at a fast enough rate, the server disconnects the socket connection. My ...
0
votes
1answer
51 views
Java Game General Design - Pong [closed]
I'm making Pong in Java for fun. I just finished Tetris but started off building the game incorrectly, so the poor design followed throughout the program which limited the things I could do.
This ...
0
votes
2answers
23 views
Can you communicate with a browser window, after opening it with a JavaFX app?
My question is just as the title indicates.
I have a JavaFX app, and need to open a browser window. After opening it, I want to be able to communicate from the browser back to the app that opened it.
...
-2
votes
1answer
53 views
Best Algorithm to encrypt password [closed]
I want to encrypt the password & store the encrypted value in MySQL database. What algorithm is the best way to go for encryption in Java?
For each user, I've userid, useremail field as well ...
0
votes
0answers
18 views
Simple Key Listener does not work NetBeans
i am using NetBeans to build my application.
All my mouse listeners are works great, but key listener does not listening at all.
private void viewport1KeyPressed(java.awt.event.KeyEvent evt) { ...
0
votes
1answer
16 views
How to run 3 scriptella files one after other from java program?
I have 3 scriptella scripts I want to run from the java program one after another. It is very important, because each xml script uses the results of the previous one. How can I accomplish that?
...
1
vote
1answer
19 views
Making JPanel bigger
I am trying to make my JPanel bigger. I have three tabs but when I run the program not all of them show (unless I click the arrows). I just need to know how to make the panel bigger so that I won't ...
0
votes
5answers
71 views
How to tell if an unknown number is in a String?
I have an if statement which checks if a variable is equal to some string. But, I want to check if there is an number in the string, too. Something like this:
if(thestring.equals("I, am awesome. And ...
0
votes
0answers
18 views
Opening files via javafx
I'm designing a GUI desktop application via JavaFX. I wanted to have a button open a mp4 video, and another button open an exe. Is this possible to do/what would I need to do this?
It doesn't need ...
0
votes
1answer
19 views
Forward slashed removed in form id
I am using Struts2(2.3.14) and a forward slash character included in a variable created in the java server-side code is being escaped to _ after using it inside an struts form tag.
The code (jsp):
...
0
votes
1answer
36 views
Java socket connection problems
I'm trying to learn network programming for java and I am having trouble getting a simple chat program to connect between the server and the host. Here is what I'm experiencing:
When I try to connect ...
0
votes
1answer
42 views
Summing an array using multithreading
I have an array with the size of n which is filled with the numbers 1..n.
I need to sum this array using m threads by each time taking two elements, sum them up and inserting the sum back to the ...
0
votes
1answer
31 views
Inconsistent spacing when building a CSV file
I'm scraping (screen-scraper) this raw text data from a site and I have to format it, then transfer it to a CSV file. The raw text data is in the correct format but the line breaks don't carry over.
...
0
votes
3answers
36 views
class that simulates bi-dimensional table in JAVA
public class table
{
private int raw=0;
private int column=0;
private List<ArrayList<Integer>> TABLE ;
private static int COUNT_ELEMENTS_IN_RAW=0;
private static int ...
0
votes
0answers
24 views
Show java class in a popup menu
I created a Plugin Project with the following plugin.xml:
<extension
point="org.eclipse.ui.popupMenus">
<objectContribution
...
1
vote
1answer
29 views
How to decompress lzo_deflate file?
I used LZO to compress reduce output. I tried this: Hadoop-LZO project of Kevin Weil and then used LzoCodec class with my job:
TextOutputFormat.setOutputCompressorClass(job, LzoCodec.class);
Now ...
0
votes
1answer
20 views
Simpliest way to make a custom JPanel background
I've got problem with my JPanel background. I want to put my image "aaa.jpg" in to background of panel "p5". It will be good if it will be done without creating any new class. Is it simple way to set ...
2
votes
0answers
35 views
Android: Incorrect Date when Converting from Seconds
I'm parsing some date data from an XML string into a hierarchy of model objects. The dates are in a 10-digit seconds format. I use the method below to convert those seconds into Date objects
public ...
-6
votes
0answers
41 views
java class for des encryption [closed]
cryptoStream = new CryptoStream(memoryStream, des.CreateEncryptor(), CryptoStreamMode.Write);
cryptoStream.Write(inputBytes, 0, inputBytes.Length);
...
0
votes
1answer
9 views
Why I get GridException when trying to open a website using Selenium
I am new to selenium.
This is what I did:
I started a standalone selenium server on cmd prompt.
I ran below code, for both webDriverWay() and seleniumWay() I get error like below. In both cases I ...
2
votes
1answer
24 views
Mapping an Interface As A Primary Key Via Hibernate
I have a class with it's own @Embeddable id class, let's call it ICompanyId. There are 2+ classes that implement ICompanyId. Classes that implement ICompanyId are the embedded id's for classes that ...



