Since 5/2/2012 8:47:08 PM, martin1645 has written 7 articles and participated in 520 conversations. martin1645 signature: martin1645
martin1645's articles:
Items(7) /1
Oracle Java or Open Java?1420 (11/7/2012 11:42:41 PM) comp.lang.java.programmer Last time I remember any discussion of using the Open JDK there was a
general opinion that Sun^WOracle Java was still the way to go.
Is this still the case?
--
martin@ | Martin Gregorie
gregor... Martin
EXIF tag handling in Java2234 (3/24/2012 9:37:09 PM) comp.lang.java.programmer Can anybody recommend a good EXIF tag handling Java package? I need to use it for reading and writing 'Comment' tags in at least JPG files, and preferably for more image types than just JPG. I found out, by ... Martin
Access problems with the Oracle Technical Support Network237 (7/23/2011 8:40:30 PM) comp.lang.java.programmer I'm having a total failure to in my attempts to access the Oracle Technical Support network so I can research/report the JavaMail problem in my preceding post, but the Main login screen shows no response exce... Martin
JavaMail bug?3035 (7/23/2011 8:32:46 PM) comp.lang.java.programmer I seem to have found a JavaMail-1.4.4 bug If I try to open an SMTP connection by obtaining a transport instance and then calling connect(): Transport tr = sesh.getTransport("smtp"); t... Martin
pyodbc problem035 (7/27/2010 6:02:37 PM) comp.lang.python I have a small problem: I can't get pyodbc to connect to a PostgreSQL database. All it does is spit out a malformed error message. When I run this: ============================================== import pyodb... Martin
Reading resource files from a jar file1127 (2/12/2010 2:55:08 PM) comp.lang.java.programmer I have a configuration file intentionally buried in a jar file I'm building (and a tool to amend it before you ask). This is all working correctly but could possibly have been done better. Yesterday I search... Martin
Read a single byte from stdin3919 (7/12/2009 7:00:40 PM) comp.lang.java.programmer Is there a standard way to read single bytes from a Java program's standard input without involving AWT or Swing? By that I mean that I need unbuffered input: I'd like to read each keystroke as the key is hi... Martin
regexp(ing) Backus-Naurish expressions ...2730 (3/10/2013 2:27:32 AM) comp.lang.java.programmer I need to set up some code's running context via properties files and I want
to make sure that users don't get too playful messing with them, because that
could alter results greatly and in unexpected ways (... qwertmonkey1(54)
Inserting In a List16611 (4/2/2013 10:11:53 AM) comp.lang.java.programmer Dear Group,
I am taking out the files in my desktop folder, as,
File folder = new File("C:\\Users\\subhabrata\\Desktop");
Next, I am trying to take them out one by one as using for loop and name
of ea... subhabangalore(122)
Inserting Multiple Lines from Console156 (4/8/2013 1:59:10 PM) comp.lang.java.programmer Dear Group,
I was trying to get input of different nature of string, int etc.
To insert multiple lines I can do sort of standard coding like,
public class BRReadLines {
public static void main(Stri... subhabangalore(122)
exec problem is JDK 1.7.0_218514 (4/16/2013 10:48:10 PM) comp.lang.java.programmer This code no longer works in JDK 1.7.0_21
Process p = exec( "F:\\Program Files (x86)\\netload\\netload.exe",
true/* wait */ );
I thought perhaps it wanted some embedded quotes, but that does not
work e... see_website(4855)
A small exercise218 (4/20/2013 1:11:58 PM) comp.lang.java.programmer Try to predict the behavior of the execution or compilation
of the following code!
public class Main
{ final int a; final int b;
Main(){ this.a = 0; Main.this.b = 0; }
public static void Main( fi... ram(2825)
lectures about "programming methodology"493 (5/5/2013 6:37:26 PM) comp.lang.java.programmer I decided to watch lecture videos from the Stanford
University about �programming methodology�, which actually
teach Java.
I was somewhat surprised that the lectures of the renowned
Stanford uni... ram(2825)
Indentation styles293 (5/7/2013 2:23:50 PM) comp.lang.java.programmer markspace writes:
>I don't see why code can't be formatted for its intended audience either.
The formatting too is part of the message I want to convey,
so to me it would not be the same message anymo... ram(2825)