Toward more efficient ArrayLists1025 (6/28/2003 5:23:05 AM) IIRC Arraylists are about 10 times slower than plain arrays. This is quite a penalty to pay for not knowing ahead of time how many items you will have. I wonder if a efficient ArrayList could be invented that... roedy(1019)
Article - Telnet using Java056 (7/3/2003 12:40:40 PM) [Moderator Note: The article mentioned below discusses a commercial component library for Java called iNet Factory.] This article demonstrates how to create an interactive Telnet session using Java. http://w... vglass(10)
multi track audio card accessing022 (7/3/2003 11:58:38 AM) hallo I am programming in java for multi track sound card ( 4 - stereo track -- 8 speakers). I need to output 8 mono wav audio file in eight different speakers for this work I have suceeded by playing two mon... vijaysaravanan4
Porting from Swing to AWT?339 (6/30/2003 5:29:48 AM) Just when I became proficient with Swing, I found out that MS IE doesn't support it and hence I will have to downgrade my applets to AWT. I use JBuilder 8 and have been looking around the "Choice" and "Popup" ... ramon(1465)
Why is Java so inconsistent?632 (7/2/2003 3:18:24 AM) Hey all, Myself and a friend have been toying around with writing a web based game but its getting very frustrating. Why is Java so inconsistent? We picked it because of its x-platform capability but all... david.bestNOSPAM(4)
Tomcat and AIX 5039 (7/3/2003 8:41:32 AM) Hi, I'm developping Web Applications in Java. I'm using Tomcat as a Web Server. Everythings goes well under Linux and Windows. I have a B50 with AIX 5L and the latest Maintenance Package installed. I've also i... greg6431(1)
Adjust the quality of JPEG encoding when saving images in JDK 1.4.2135 (7/2/2003 2:11:13 PM) It's easy to save a BufferedImage the following way : BufferedImage image = ... File file = new File("picture.jpg"); ImageIO.write(image, "jpg", file); But how do you adjust the quality of the JPEG encoding ?... sunrise1647(4)
java parser136 (7/2/2003 10:27:25 PM) Hello, I am new to programming and I need to create a parser for an application using java. I am using J++ to complete this task. Any help or advice would be greatly appreciated. Also, Can anyone assist me i... wfuphan(2)
[HTTP] Problem with refresh025 (7/3/2003 4:56:16 AM) hello, i wrote a little webserver in java: [SNIP] public synchronized boolean sendHTML(Object sendObject) throws IOException { boolean retbool=false; boolean fertig=false... guenther.schoebel