Re: My feedback on Update 10 and wishlist for the future
2008-07-02 13:49:13
I think if you just specify the pages which crash the browser, along with your specific browser and system configurations, it would be a good start for plugin developers.

Dmitri

Re: My feedback on Update 10 and wishlist for the future
2008-07-02 08:17:06
> 7. Browser crashing in old versions must be prevented
> at all costs.

Actually, i have the new plugin crashing Firefox 3 on the daily basis. So much for the advertised robustness. On the other hand, i have avoided sites with applets like plague in pre-Firefox 3 days, so this might be an improvement...

Re: HTTPS and "If-modified-since"
2008-06-30 16:16:33
Yes, this is working in all production releases of Java 6.

Re: Dynamically Adding Data To JTable
2008-06-30 11:47:39
Did you read this yet?

http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

Re: Java FX discussion now welcome
2008-06-27 10:46:40
For those who are interested in JavaFX, I wanted to post a list of resources. I compiled this list by polling the various writers in my team, some of whom work documenting JavaFX:

JavaFX product page: http://www.sun.com/software/javafx/index.jsp
JavaFX Developers Central: https://openjfx.dev.java.net/
JavaFX Script product page: http://www.sun.com/software/javafx/script/index.jsp
JavaFX Documentation Wiki: http://infobot.sfbay/wiki/javafx

An article on JavaFX Mobile: http://www.artima.com/lejava/articles/javaone_2007_jacob_lehrbaum.html

Getting Started with JavaFX Script for Swing programmers: https://openjfx.dev.java.net/Getting_Started_With_JavaFX.html

An article on Using the JavaFX GUI Toolkit: http://java.sun.com/javafx/script/reference/gui_toolkit/

An article on Using SceneGraph to Present Visual Objects in JavaFX Script: http://java.sun.com/javafx/script/reference/scenegraph_demo/

Have you found other resources that are useful? Post them here.

Sharon

Re: Parameter in Java
2008-06-27 03:47:09
every parameter are pass by value in java.
The real thing pass when we passing a parameter is bit value of parameter.
When we pass a reference of a object then the bit value of reference is pass and
reference parameter is now pointing the object which is pointing by the passing reference.
For example
String s = new String("abcd"); //here s is a reference of String object
f(s); //and here a function f is calling and reference s is pass
// here is definition of function f
public void f(String s1) {
//some code here
}
//now the bit value of reference s1 is same as reference s
and reference s1 is also pointing the object which is pointing by reference s

Re: Why does Java Webstart take so long to start downloading the applicatio
2008-06-25 07:47:04
Oops, I also filed a bug report ;) Mine has review ID 1279666

Hopefully Sun will merge the two.

Re: Why does Java Webstart take so long to start downloading the application?
2008-06-25 06:48:26
You didn't mention O/S

I am seeing extreme slowness on Windows Vista but no problem on XP.

Downlod keeps going into "stalled" state and takes over a minute when it should take about 3 sconds.

Anyone else seeing this?

Re: Update 10 and pack200: what's the secret?
2008-06-24 22:17:03
I do believe now that it is a bug in the Vista implementation of Update 10 as I have got it to work unchanged on Windows Server 2003 and CentOS linux. It's only on two Vista machines where it fails.

--
And loving it,

-Qu0ll (Rare, not extinct)
_________________________________________________
Qu0llSixFour@gmail.com
[Replace the "SixFour" with numbers to email me]

Problems with substring(0,xxx ) ???
2008-06-23 10:47:20
Hi,

look at this code, I think that something is wrong.

import java.util.Hashtable;
public class pru2 {
Hashtable<String, Object> htab2 = new Hashtable<String, Object>();

public pru2() {
String kkk = "kkkk.aaaa";
String jjj = "kkkk.bbb";

htab2.put( kkk.substring(0, kkk.indexOf('.') ), new Integer(123));

System.out.println( kkk.substring(0, kkk.indexOf('.') ) + ",hash=" + kkk.substring(0, kkk.indexOf('.') ).hashCode() );

String mmm =jjj.substring(0, jjj.indexOf('.'));

System.out.println( htab2.contains( mmm) ) ;

System.out.println( jjj.substring(0, jjj.indexOf('.')) + ",hash=" + jjj.substring(0, jjj.indexOf('.')).hashCode() );


}

public static void main(String args[] ) {
pru2 xx = new pru2();
}

}
-------------------------------------------------------------------------------------
This is the output.

kkkk,hash=3293888
false
kkkk,hash=3293888

FALSE??????????????????
WHY???????????????????
------------------------------------------------------------------------------------