OT? gvim322 (8/10/2004 4:06:29 AM) comp.lang.java.programmer Not sure where to ask. How can I change the defaults such that when I start gvim it opens with line numbers displayed and also full screen? ... Liz
efficient way to replace char in StringBuffer112 (8/2/2004 8:42:18 AM) comp.lang.java.programmer I normally use strings. Just starting to use StringBuffer. How can I do the following better? (Replace and with ) String s = DynamicPanel.dynamicCmdArea.getText(0, len); StringBuffer ss = new StringBuffer(s)... Liz
jpg with less than 24 bit color137 (7/26/2004 10:23:58 PM) comp.lang.java.programmer I have BufferedImage I; that I write to a file as a jpg using FileOutputStream fos = new FileOutputStream("filename"); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos); encoder.encode(I);... Liz
movie121 (7/16/2004 9:17:20 PM) comp.lang.java.programmer What is the best way to make a movie. My app can create jpg images, but is it better to produce some other format that is not lossy and use a utility to combine them into a mpeg? ... Liz
what is a stack3524 (7/16/2004 3:00:32 AM) comp.lang.java.programmer I have seen in various places reference to a 'stack' But what is a stack? Is it a machine specific implementation of something, is it a machine hardware feature/capability? One remark in a book on Java Performa... Liz
database not exist, how to tell222 (7/15/2004 3:39:08 AM) comp.lang.java.programmer I have a java program that will create a MySQL database, create a table, and then write data into the table. My problem is how to tell if the databasename that is given to me already exists or not, because if i... Liz
JTable418 (7/4/2004 10:39:13 PM) comp.lang.java.programmer I have double data[][]; And want to put this in a table with JTable table = new JTable(data[][], columnNames[]); but this wants data to be an Object[][] I have been trying different things without luck. How... Liz
jdbc driver and jar problem317 (6/12/2004 7:38:31 AM) comp.lang.java.programmer Is there something special about jdbc drivers and jar files? My app runs fine using MySQL. The MySQL jar file is in my classpath. When I put the app into a jar file, I keep getting class not defined; it can't f... Liz
radio button colors1226 (6/2/2004 12:31:40 AM) comp.lang.java.programmer For radio buttons, does anyone know if there is a problem with the color of the 'on' dot that depends on the background color of the button? For buttons with a dark green background the 'on' indicator fails to ... Liz
Java development group at Sun Microsystems1314 (8/7/2004 12:23:42 AM) comp.lang.java.programmer Does anyone know the email address of anyone (preferably the group leader) at the Java development group at Sun Microsystems? I wrote a Java class, PowerSet, that subclasses the Iterator class and iterates thro... ksoileau(8)
implementing swap for integers in java1225 (8/8/2004 4:56:15 PM) comp.lang.java.programmer Hello Since java doesnt supports pointers, how do you write a function which swaps the contents of 2 integers. -- Winners dont do different things, they do things differently. Madhur Ahuja India Homepage : h... ef(100)
Detect if table exists440 (8/8/2004 6:16:11 PM) comp.lang.java.programmer This should be easy, but I am unable to find it now. How can I detect if a particular table exists or not in my DB (I am using MySQL). I cannot delete table, so I can't use drop if exists; but can I use count (... dontspam_manish(78)
Can't find class outside of package?525 (8/8/2004 11:46:54 PM) comp.lang.java.programmer Hi, I'm having class/package problems. I have a class Employee in the package client; it is on disk as: client/Employee.java I then have a utility class called Timer.java that does not belong to any package.... digital_puer(190)
File type recognition1229 (8/11/2004 10:43:34 AM) comp.lang.java.programmer Although it's a more general topic I consider it in the context of Java and that's why I'm posting it here. The standard 'File' interface doesn't provide means (a property or method) to unambiguously identif... s7an10(253)
java 1.5 foreach statement1622 (8/12/2004 9:35:21 PM) comp.lang.java.programmer I was hoping that the expanded java 'for' statement would accept any class that had a method "Iterator iterator()". This doesn't seem to be the case. What types are accepted in the Iterator free for-loops? Subc... hugodogo(10)
Java API Source Code639 (8/13/2004 2:33:01 AM) comp.lang.java.programmer Hi What is the quickest way of obtaining the source code for the class files in the Java API? Thanks in advance AAA --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.g... someone2787(64)
throw in a finally1519 (8/13/2004 3:06:07 AM) comp.lang.java.programmer Just been playing with RefactorIT Found the Audit tool and ran it. It alerted me to something that I never considered to be a problem. It graded high priority - throwing clauses in a finally block. Why do th... spam19(796)