2
votes
7answers
80 views
How to implement connected rooms?
This may be a duplicate question as I don't know to phrase the search query. I'm creating a Zork-like text based game in Java where the character moves to different rooms which are …
0
votes
0answers
23 views
Java program to auto dial a calling card phone number, problem with entering card number
I wrote a Java program to mimic the sounds to dial phone numbers, it works fine except when it comes to phone cards, it needs to dial a local number first (no problem, it successfu …
1
vote
3answers
25 views
Java Problem “UnsatisfiedLinkError”
I made a simple java program that sends bytes to the parallel port, which uses a .dll along with two other classes (pPort.java and ioPort.java) to accomplish it, and it works perfe …
1
vote
7answers
105 views
What are your favourite Java features? [closed]
Why do you like Java so much? What are those features that make it practically better than C or even C++?
0
votes
3answers
104 views
Recursion and permutations
Hi.
Let's say that we have two boxes of pencils (in first box just blue and in second just red pencils). So the question now is, in how many ways can we put x red and y blue penc …
-4
votes
2answers
90 views
How is Java an ‘imperative’ programming language and not a ‘declarative’ one?
Specially in comparison to C/C++ (which are declarative), how is Java imperative?
0
votes
1answer
23 views
How can I avoid OutOfMemoryErrors when using Commons FileUpload’s DiskFileItem to upload large files?
I am getting OutOfMemoryErrors when uploading large (>300MB) files to
a servlet utilizing Commons FileUpload 1.2.1. It seems odd, because
the entire point of using DiskFileItem is …
1
vote
4answers
43 views
Java HTTP AUTH?
I'm trying to connect a desktop application I am writing with the del.icio.us api @ http://delicious.com/help/api and simply provide them with my username and password and to reque …
1
vote
5answers
39 views
Initializing program with files passed as main arguments (system.getProperty())
Hello,
I have to execute my program with this line:
java -DImport=data.txt -Din=input.dat -Dout=output1.dat main.Main
I've been trying to figure it out how to do this but can't …
1
vote
5answers
81 views
Select all the components of a array without a loop
I've made a array full of JLabels and would like to add a listener to them.
The listener doesn't need to know exactly which one was clicked on, just that one was.
Is there a way t …
2
votes
6answers
59 views
Which J2EE web development framework to choose for a simple, accessible application?
Hi everyone,
I want to write a simple web application, on J2EE, with these characteristics:
I don't need any AJAX, and it should even work with JavaScript disabled on the browse …
2
votes
4answers
65 views
public static final variable in an imported java class
hi all,
I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB.
ClassA has nothing except 4 public static final string …
1
vote
4answers
34 views
Eclipse Web Project Dependencies
This question is about eclipse development, I am trying to create a web application in Eclipse, the problem is that I don't get the the dependencies jars to the deployed archive.
…
0
votes
3answers
48 views
Splitting https between Apache and Game Server
Hi,
i want to have both an Apache and a Game Server to be reachable on port 443 of the same IP address.
The game server connection is a normal TCP connection that is established …
1
vote
2answers
123 views
What is the difference between ~ and ! operator?
Please let me know the difference between ~ and ! operator in java.
