| Thread | Last Post | Replies |
|
| network shared folders... | 09 Jun 2008 11:31 GMT | 2 |
How can I get shared folders of other computer in the network? I do so: public static String[] listSharedFolders(final String compName) { ArrayList retValue = new ArrayList();
|
| Natural logarithm method not recognised | 09 Jun 2008 11:26 GMT | 5 |
Good day dear members of the comp.lang.java.programmer newsgroup. I've got the following error message while trying to use the "logl()" method (natural logarithm function) on my NetBeans IDE symbol : method logl(double)
|
| Design decision for a game | 09 Jun 2008 11:24 GMT | 21 |
I am currently developing the House Of Cards card game (I can't seem to find any relative info on the internet), but it doesn't really matter. My problem is a design problem. Say you have a class that holds a set of cards. When a card is added
|
| Iterating across a TreeMap.... | 09 Jun 2008 10:19 GMT | 5 |
I'd like to iterate over a TreeMap and print out the key and value for each entry, with each entry printout being on the same line. Anyone know how to do that?
|
| help with regex | 09 Jun 2008 10:08 GMT | 6 |
I'm using java.util.regex for finding exponential numbers from a file. the expression I'm using is: Pattern p2 = Pattern.compile("[0-9]*\\.[0-9]*[E]\\+[0-9]*"); I'm not able to get the result.Please tell where I'm going wrong.
|
| how to read binary file in java and how convert into ASCII | 09 Jun 2008 10:01 GMT | 1 |
I have a prolem here .. I need to read a binary file and then convert that into ascii after removing unprintable characters withing it .... I am able to read that file now but all i can see is binary format
|
| int comparison always returns true? | 09 Jun 2008 07:05 GMT | 7 |
I can't figure this out - new to java, but code appears to be ok. I'm looking for a string within lines of text returned from a system command. I get all the output back - no problem. But when I try to do something based on indexOf, it always returns true:
|
| Second index of a String in a string | 08 Jun 2008 19:56 GMT | 15 |
To find the first index of a String inside another String, we use the following method, String.indexOf(String str1) Do we have any utility method to find the Nth index of a String in
|
| Trouble with audio devices | 08 Jun 2008 19:19 GMT | 5 |
I wrote a simple Java application to record audio on some mixer and then play it back. With my headphones / microphone connected, I got the following list of mixers: 1. Primary Sound Driver : Direct Audio Device: DirectSound Playback
|
| fcdx | 08 Jun 2008 17:44 GMT | 6 |
|
| Java 3D for jdk1.6.0_06 ? | 08 Jun 2008 16:45 GMT | 1 |
Good day dear members of the comp.lang.java.programmer newsgroup. Please is there any Java 3D for jdk1.6.0_06 for download on the java.sun.com website ? The java3d1_1_3-win-opengl-sdk.exe I've already download from them
|
| commons.apache.org/math/stat/ | 08 Jun 2008 16:02 GMT | 1 |
as part of http://commons.apache.org/math/ you have: http://commons.apache.org/math/apidocs/org/apache/commons/math/stat/
|
| Accessing jar file through program | 08 Jun 2008 06:10 GMT | 6 |
I'm writting a program for data Extraction using jexcelapi. i have downloaded the jar file. Now I want to use it my program, for this the code is: import java.io.*;
|
| Holy crap, what has C++ become? | 08 Jun 2008 03:11 GMT | 23 |
I was looking over someone's C++ code today and despite having written perfectly readable C++ code myself, the stuff I was looking at was worse than legalese. The people who are guiding the development of C++
|
| Java Enums and Sets? | 08 Jun 2008 02:46 GMT | 5 |
I know Java now has enumerated types, but does it also support sets like pascal? TSideType = (stLeft, stTop, stBottom, stRight); TSetOfSideType = set of TSideType; var
|