16
votes
13answers
230 views
Switching from Java to .NET from a career change point of view
Could anyone share with me their experience with switching from Java to .NET from a career point of view?
I've been a Java developer for 12 years and am just getting tired of how fragmented the …
4
votes
5answers
131 views
Restart a career for ex-C programmer
I'm trying to re-enter the job market after a loong break - 15 years. My last full time job was programming in C with Sybase SQL backend for a corporation. Recently, I did a few websites. You know, …
1
vote
1answer
27 views
Why is Set marked by the compiler as “not a known variable in this context”?
This is my code;
import java.util.*;
class State extends HashMap<Character, State>{
boolean isFinal;
State () {
isFinal = false;
}
}
class Automaton{
…
0
votes
4answers
36 views
Java JTextArea - Adding a newline
So I'm stumped. I, for some reason, seem to remember that Java does weird things when you try to add new lines to stuff... so I think that may be the problem here.
This code is not working how you'd …
1
vote
5answers
23 views
How to use PORT command while writing an FTP client with JAVA
I am trying to write an FTP client using java.
As far as I understand I need to send my IP adress with PORT command when I need to establish an active connection but,
How do I get that IP address?
I …
0
votes
4answers
74 views
Killing this NumberFormatException
I'm getting a NumberFormatException on the Integer.parseInt() method. I know this exception is produced when something like "ab" is passed to the method, but I'm at a loss finding where this is …
1
vote
3answers
21 views
Hibernate: Query without SQL-strings?
Hello everyone!
Is it possible (and if yes, is it advisable) to do queries of Hibernate-mapped data without using SQL-strings, but some OOP way instead?
0
votes
8answers
82 views
Java ResultSet hasNext()
I've got a class that implements Iterator with a ResultSet as a data member. Essentially the class looks like this:
public class A implements Iterator{
private ResultSet entities;
...
…
2
votes
2answers
43 views
Modelling a Finite Deterministic Automaton via this data
I have this input file:
2
3 2 1
ab
1 0
2 0
2 0
2
0 3
abaa
aab
aba
3 3 2
ade
0 1 2
1 2 0
2 1 0
1 2
2 2
a
de
The first line represents the number of test cases.
Each test case starts with 3 …
1
vote
0answers
39 views
Hibernate session problem for transactions.
Hi all,
I am new to hibernate and trying integrate hibernate with an existing spring based application.
I configured session factory and transaction manager, transaction proxy template.
I am also …
4
votes
13answers
369 views
C++ vs Java constructors
According to John C. Mitchell - Concepts in programming languages,
[...] Java guarantees that a
constructor is called whenever an
object is created. [...]
This is pointed as a Java …
4
votes
5answers
159 views
In Java what do arrays inherit from? Can I do this?
Hi
Sorry for the newbie question, I'm used to C# so my Java framework knowledge is not so good.
I have a couple of arrays:
int[] numbers = new int[10];
String[] names = new String[10];
//populate …
1
vote
2answers
22 views
What does AtomicReference.compareAndSet() use for determination?
Say you have the following class
public class AccessStatistics {
private final int noPages, noErrors;
public AccessStatistics(int noPages, int noErrors) {
this.noPages = noPages;
…
1
vote
2answers
69 views
Java Inner Class Iterator Problem
I'm having difficulty using an inner Iterator.
private List<List<? extends HasWord>> sentences = new ArrayList<List<? extends HasWord>>();
private Iterator<String> …
5
votes
5answers
141 views
How can I determine the type of a field in Java?
I have been trying to determine the type of a field in a class. I've seen all the introspection methods but haven't quite figured out how to do it. This is going to be used to generate xml/json from a …
