shankar
unread,Dec 13, 2012, 9:52:16 AM12/13/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hi,
Can someone help me out here pleaseeeeeeeeee, am trying to read and
write the CSV / XLS file into the classpath
below snippet to Write a file in to the location CSV in the weblogic
domain directory
String fileName="CSV/Failures"+System.currentTimeMillis()+".csv";
writer = new FileWriter(fileName);
this creates the file in the specified location , but when i attempt
to read this ended up with the below exception
Bellow the code snippet to read the file from the same location.
String filename="/CSV/Failures"+System.currentTimeMillis()+".csv";
Window.open(fileName, "_self",null);
Exception
----------------------------------
Error 404--Not Found
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:10.4.5 404 Not
Found
The server has not found anything matching the Request-URI. No
indication is given of whether the condition is temporary or
permanent.
Thanks in advance :)