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
8 views
Java RMI and https?
I am new to enterprise design and client server technologies. Can you get Java RMI to work over the HTTPS port 443? I found some google links to stuff about "tunneling" and using HTTP port 80. Does ...
0
votes
0answers
19 views
Android exception when calling a new activity
I'm trying really hard to create an instance. It works when I do not execute my code after the initial calling to the onCreate function. Logcat is throwing me a ton of useless errors( to me, at ...
1
vote
1answer
37 views
How can I take this working code and make it use java generics?
I have a method without generics defined like this:
private void methodWithoutGenerics(Integer subjectKey) {
Client client = AuthClient.create();
List<JsonResult> clinicalItems = client
...
0
votes
0answers
10 views
Using AlarmManager to perform a specific tast in future
I am new to Android and I would appreciate any help on this.
I am trying to use Alarm Manager so that it would call myBroadcastReceiver class at a specific time in future set by datepicker and ...
0
votes
1answer
10 views
Java EE - Upload image to database?
I'm making a fairly basic site for my mother, and seeing as I did some stuff in Java EE and with EJB during college last semester, I'm going to stick to this.
The only issue I am having is uploading ...
1
vote
0answers
27 views
Why is my APK so large?
My APK is coming out to around 19 MB. I have no pictures or sound files in my project and only one class. Looking through the directory of my project folder (which is about 50 MB), most of the size ...
5
votes
3answers
38 views
Why is exposing an iterators underlying representation bad?
Iterator Pattern Definition: Provides a way to access the elements of an aggregate object sequentially without exposing its underlying representation. Wiki
What are the consequences of exposing ...
0
votes
0answers
4 views
how to Handle Dragging of JPanels that are connected via line
I tried to handle Dragging of the JPanels also repainting the line
This is the code on which i want to apply handle Dragging of JPanels
import java.awt.Dimension;
import java.awt.EventQueue;
import ...
0
votes
3answers
25 views
Generic classes with Collection getter of other types
currenty I'm facing a problem with generic classes in Java.
I have something like this:
public class GenericClass<T> {
T doSomething() {...}
Collection<String> getCollection() ...
-1
votes
0answers
40 views
Arraylist in a Arraylist
How is it possible to store data (bytes) input like this:
input data (bytes) : 01 23 45 and 67 89 10
At the end Arraylist row : [[01,23,45],[67,89,10]]
// declaration
List<List<Byte>> ...
0
votes
0answers
6 views
JavaFX self contained application - Preferences API not working
I've created a JavaFX application and deployed it as a self-contained app. The problem is that it is not being abble to write any file and not able to use the Preferences API.
The self-cointained is ...
0
votes
0answers
9 views
Use JMockit to test the concrete methods of an abstract class
I have an abstract base class that defines both concrete and abstract methods. I'm wondering if there's a way, using JMockit, to mock this type such that I can declare expectations for the abstract ...
0
votes
2answers
22 views
Getting Path of File Inside Jar
I'm trying to access an image located inside of a running jar.
Here is my code:
Image image = Toolkit.getDefaultToolkit().getImage(
getClass().getResource("/res/sprites/"));
The code ...
1
vote
4answers
42 views
Is it possible to use generics but require an specific parent type?
I want to create a class MyMap<T>, where T must derive from MyAbstractClass.
MyMap will then create and manage an array of whatever type it is. MyMap.getPos(0,0) should return an object of the ...
-3
votes
4answers
42 views
Check if HashSet/HashMap contains Object
if I want to check if a certain Object of class MyClass is contained in an ArrayList or the like, I can just overwrite equals.
public boolean equals(Object o) {
.....
}
but what do I have to do ...
0
votes
1answer
13 views
Removing ActionBarSherlock from Modules
I'm trying to figure out why my APK is 21 MB large when I export it. I was using HoloEverywhere and ActionBarSherlock, so I'm doing an experiment to see how big my APK will be without them. To do ...
0
votes
1answer
9 views
Convert Json many levels to Json simple one leve using jackson
I have json, with diferents levels field , so i want to convert to a single json with fields with one level for example :
{
"prop1":"value1" ,
"prob2":"value2" ,
"prop3":{
...
0
votes
0answers
17 views
Android SharedPreferences auto incrementing technique
I wanted some feedback on this approach. My apologies if this is confusing or nonsensical. (thats probably why I'm asking because im unsure.)
My app auto assigns clientID's to a textview at first ...
0
votes
1answer
13 views
error(s)_during_evaluation Eclipse
Eclipse debugger just stopped showing variabile data few days ago it always says error(s)_during_evaluation, i tried increasing the ram in ini , tried to reinstall Eclipse JUNO, and installed ...
1
vote
0answers
13 views
GSON Expected BEGIN_ARRAY but was BEGIN_OBJECT
I'm getting this error when I receive only one single item in a list. I'm using Jersey in the server side REST Web service, and this is how I'm doing it :
@GET
@Path("getproject")
...
-6
votes
1answer
37 views
Unable to access variables of one class from another in java
I have three frames with 3 classes in java respectively. I want to access the text from one frame for other?
I want to get the text entered in the editable combo box of one frame and search for it on ...
1
vote
0answers
14 views
Find Fragmented Files
I can't seem to find a way to detect fragmented files via Java. I'd assume the filesystem part would be abstracted and made easy via Java, but can't seem to get any results from Google.
Please advise ...
0
votes
0answers
6 views
oracle adf fusion application welcome page
I am new to oracle fusion development using oracle adf framework.
Well my question is that when we create a project we have two projects inside first one is model and the other one is ...
0
votes
0answers
3 views
No Edges in output file using CannyEdgeDetection.java
Using the defaults, and the same source image from the first example on the website: http://www.tomgibara.com/computer-vision/canny-edge-detector I am getting a pure black image as my out.jpg. The ...
0
votes
0answers
8 views
Autoscaling an image after using the Matrix.postRotate() method
I used the Matrix.postRotate() method to rotate my image but now it no longer autoscales to fit the parent LinearLayout. Here's the relevant code...
private ImageView rotateimage(ImageView dotimage) ...
4
votes
3answers
39 views
Java regex error - Look-behind with group reference
I'm trying to build a regex that matches exactly two occurrences of a char in a class. This is the regex I made:
(?<!\1)([^raol1c])\1(?!\1)
As you can see, it uses negatives look-aheads and ...
0
votes
1answer
24 views
java database management connection error
I am using the below code to make an SQL connection but am getting an error.
I am using netbeans and netbeans itself is able to connect to the database. My code for some reason not allowing me to ...
1
vote
2answers
37 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() ...
0
votes
0answers
13 views
Java, convert string to a RSA publicKey
i am trying ton convert a string representation of a public key into a publicKey java object use to encrypt data but i keep getting the following error below:
...
-1
votes
0answers
37 views
How to extract only relevant data from HTML file using html parser in Java?
how to extract only specific data from html file using html parser. My code is extracting all the data from the html file. Can anyone help me with this?
Here is my code:
import java.io.*;
import ...
0
votes
6answers
63 views
Simple object sample in java [closed]
Variable could not be found error coming while I am trying to access m.name = "killer" inside the class. Please, help.
class Movie {
String name;
String genre;
int num;
public ...
0
votes
0answers
12 views
How to access imported xsds
Hi I have a complex schema, the schema is internally calling multiple schemas.
I am facing following problems
I can't customize the classes
<bindings ...
-2
votes
0answers
11 views
Best practices to access Intranet services from DMZ [closed]
I'm building an FTP file upload service and requirement is that FTP handler is located in DMZ, but received files should end up on internal storage on Intranet. For that we have second service running ...
0
votes
0answers
9 views
JAXB Marshal setProperty com.sun.xml.bind.characterEscapeHandler
I am trying to override the escape of special characters in JAXB encoding.
For this I am using an interface that implements: CharacterEscapeHandler.
Here is the interface:
package project1;
import ...
0
votes
0answers
8 views
Tomcat Server not responding when adding tomcat-catalina dependency
I'm having problems using Websockets on a Tomcat 7 (JBoss EWS 2.0)- Server on Openshift. It seems that once I add a dependency for the tomcat-catalina package in the pom file and deploy, the server ...
0
votes
0answers
10 views
Spring Data JPA + Hibernate: How do I use a repository on abstract super class for object retrieval?
I am asking as a follow up to this question. I am doing the exact same thing and it does not work. The only difference is that I do not set my classes as implementing the Serializable interface, but I ...
0
votes
1answer
17 views
Jackson @JsonIgnoreType not working on static inner class
I have several model objects that are using the builder pattern which I am trying to serialize with Jackson through Spring MVC. Problem is, I don't want the inner static builder class to be serialized ...
0
votes
0answers
17 views
Which xml parse impl to parse only a part of the XML and store it in DB
I've been searching the web but I didn't find anything that meet my requirements and am not sure what to do. I know this has been asked several times but not exactly the same as this.
We have some ...
0
votes
0answers
7 views
Create video from List of images using Xuggler
For a school project I am busy with a program that will alow you to create and edit a stopmotion video. My question to you is: How do I create a video from a list of images? I've heard that xuggler ...
0
votes
1answer
18 views
ASN.1Integer to normal integer
My server recive an Integer using ASN.1 generated classes
BerInputStream in = new BerInputStream(socket.getInputStream());
h.decode(in);
ASN1Integer ClientNumber= h.clientInt;
...
5
votes
2answers
67 views
In a Java synchronized block, are writes visible on all fields or just the synchronized variable?
Say you have this code:
private String cachedToken;
private final Object lockObject = new Object();
....
retrieveToken(){
synchronized(lockObject){
if (cachedToken == null){
cachedToken = ...
1
vote
0answers
37 views
Caused by: java.lang.NoSuchFieldError: ruleMemo
I am getting this exception - sadly, i'm trying to enhance a project to use ivy instead of ant, and while normally I do a process of
"add new library file"
"run program"
"check what library file ...
0
votes
4answers
41 views
Java garbage collection in Queue dequeue() sample code
I was going through the code of the implementation of a Queue in a course on algorithms and observed the code for dequeue() which the author used:
private Node first, last;
private class Node {
...
3
votes
4answers
54 views
Imagine a real concurrent scenario where StringBuffer should be used than StringBuilder?
I know the difference between StringBuffer and StringBuilder. read here!
And generally, as the javadoc says,
Where possible, it is recommended that this class be used in preference to ...
0
votes
4answers
60 views
Access to array from other class
static LifeInsurance[] LIArray = new LifeInsurance[20];
public LifeInsurance ( float dMonth, int startD,int startM,int startY,int label){
LifeInsurance.LIArray[LifeInsurance.counterLI] = this;
...
0
votes
1answer
34 views
Reading a file after pressing a button
I have tried to create a program that lets you to choose a file,reads it and then prints the results out... This is what i have so far
public class Main {
public static void main(String[] args) {
...
1
vote
1answer
30 views
new File() with enviroment variables in Java
How to get a File java object from its path string with enviroments vars?
For example:
new File("%SYSTEM_ROOT%/file.txt")
or
new File("${SYSTEM_ROOT}/file.txt")
-2
votes
0answers
24 views
Why do some animated gif images loop and some not? [closed]
I found that gif images created with this java tool Is there a way to create one Gif image from multiple images in Java? don't behave like usual animated gif images.
For example when I create a gif ...
1
vote
2answers
28 views
java Date conversion confusion regarding timezones
I'm using Java 6. Our servers are on Eastern Standard Time (GMT-5), and I'm trying to store a value that should be interpreted as such but I'm confused about how to convert it. I have
String ...
0
votes
5answers
66 views
How to effectively use static methods?
I am never quite sure that I am using static methods correctly. I understand how they work.
Let's say I have this class called Player(Java):
private int money;
private int lot;
private String piece;
...



