| Thread | Last Post | Replies |
|
| reading sound card output? | 28 Sep 2007 06:03 GMT | 3 |
I'd like to build an oscilloscope in java that monitors the sound card, so if I'm playing something in winamp or itunes I can look at the freq domain info. I've been having a lot of trouble reading from the soundcard though. I
|
| Problem with .jar file | 28 Sep 2007 05:53 GMT | 19 |
I have two .class files I want to put into a .jar file. I'm using an external .jar (derby database) file. If I run the app like java -cp .:derby.jar app it works. Then if I make a jar file with app.class and other.class...
|
| CPUs, thread pools, and wasted time. | 28 Sep 2007 05:51 GMT | 7 |
I'm trying to build an application that will use multiple cores efficiently, but I'm running into to some difficulties. I've written a simple small example to demonstrate the problem and attached it below. When I run this program on my dual core computer I expect that both cores
|
| ProgressMonitorInputStream test | 28 Sep 2007 04:56 GMT | 4 |
ProgressMonitorInputStream: "..a progress monitor to monitor the progress of reading the input stream. If it's taking a while, a ProgressDialog will be popped up to inform the user." Sounds neat, huh? Wrap a plain old Inputstream in one of
|
| How to test a text file is newly created? | 28 Sep 2007 04:47 GMT | 4 |
My program first generate a text file, then read it and process it. The problem of my current program is that, if running failed, that text file generated last run will be read and processed. I hope to set a check to see if the text file is newly generated. It
|
| Why do my replies not show up | 28 Sep 2007 04:37 GMT | 10 |
I was under the impression that this group was not moderated and therefor my Replies would show up within a few seconds. However, I have replied to several questions posted and even though it states my post was excepted I cannot see the replies in the relevent threads.
|
| tamilwallpaper | 28 Sep 2007 03:59 GMT | 2 |
http://tamilwallpaper.blogspot.com/ Those of you using AdSense and a Blogspot Blog may not have noticed that you now have the option to insert ads into the page structure after your posts. In the past this was only possible by hacking the
|
| Design pattern for 1 Producer/multiple Consumers? | 28 Sep 2007 02:49 GMT | 4 |
I'm doing a simple Producer/Consumer thing based on the example in the Sun docs, where the Consumer does a wait until there is something to consume, then it consumes it and does a notify, and the Producer does a wait until there is nothing to consume and then adds it and does a ...
|
| How to save a new data file inside the executable JAR package? | 28 Sep 2007 02:30 GMT | 27 |
How to save a new data file inside the excutable JAR package? if only -- new File("text.dat") it will save the file in the folder where the jar file live in.
|
| Antlr newbie question: Ignoring tokens, or a better way to do this: | 28 Sep 2007 02:02 GMT | 2 |
Basically, my input is something like: something{ value: >>> This is the text
|
| copying files from jar file to a filesystem | 28 Sep 2007 01:19 GMT | 7 |
I have a jar file that contains directories and files. I need to copy those directories and files to specified locations on a UNIX and Windows file system. So directory A in the jar will be copied to C:/ Temp on Windows and /tmp in Unix. Is there any sample code that will
|
| javax.net.ssl Sockets and OKing self-signed certificates | 28 Sep 2007 01:16 GMT | 9 |
I would dearly love a server with a "self-signed certificate" to be accessible by my javax.net.ssl.startHandshake() but it seems to consistently crap-out with a failure :-( Look I've only ever tested the client code (please see below) with a https server (just to see if everything ...
|
| When a class doesn't know it's grandpa... | 28 Sep 2007 01:11 GMT | 9 |
I'm somewhat surprised by a behaviour I didn't expect. The situation is as follows: class Z.A is static private and defines static meth(). class Z.B is static public and inherits class Z.A.
|
| Formatting as Currency | 27 Sep 2007 22:27 GMT | 8 |
Can anyone offer any help with this ? I have the following code : DecimalFormat df = new DecimalFormat("0.00"); mrate = show_student_awards.getString("monthly_rate"); double dollar = Double.parseDouble(mrate);
|
| java 6 font problem on linux | 27 Sep 2007 22:26 GMT | 2 |
Hi, I am using Mandriva 2007 (linux) and I have an application that uses Portuguese. Under 1.4.2, buttons, labels, tables, menu items, etc., all displayed correctly. When i run it under 1.6, all of the Portuguese accented characters are
|