FileOutputStream throws FileNotFoundException with long file name
I am using FileOutputStream to writng to a file and the whole path is 253 characters. But the FileNotFoundException is thrown. I met this issue with JDK1.5.0.06 but not with 1.5.0.04. Does anyone met this like me? If this is a bug of JDK1.5.0.06?
FileOutputStream fo = new FileOutputStream("D:\\weblogic\\localinstall\\bea_home\\weblogic92\\samples\\domains\\wl_server\\.\\servers\\examplesServer\\tmp\\_WL_user\\webservicesReliableClientEar\\m0ga5u\\war\\WEB-INF\\schemacom_bea_xml\\element\\http_3A_2F_2Fexamples_2Fwebservices_2Freliable\\callHelloWorldResponse.xsb");

