I'm getting hit by the same error : GCS dev is trying to write a file with 
a colon in it and Win7 doeesn't like it.

Have you found a solution to this ?

Thanx for your help.

François


On Saturday, March 16, 2013 1:46:50 AM UTC+1, Sevak Asadorian wrote:
>
> Latest error in Eclipse:
>
> Caused by: com.google.apphosting.api.ApiProxy$ApplicationException: 
> ApplicationError: 7: 
> ...war\WEB-INF\appengine-generated\encoded_gs_key:L2dzL21hcGxlL3NhdmUudHh0 
> (The system cannot find the file specified)
>
> On Friday, March 15, 2013 5:25:23 PM UTC-7, Sevak Asadorian wrote:
>>
>> I am getting an ExpectedException trying to read from Google Cloud 
>> Storage. Please help!
>>
>> This is the function that I am using to read my file.
>>
>> public String importData() {
>>
>> String result = "Done reading file.";
>> boolean lockForRead = false;
>> String filename = "/gs/maple/save.txt";
>>  try { 
>> // Get the file
>> FileService fileService = FileServiceFactory.getFileService(); 
>> AppEngineFile readableFile = new AppEngineFile(filename);
>> FileReadChannel readChannel = fileService.openReadChannel(readableFile, 
>> lockForRead);
>>
>> // Read the file
>> BufferedReader reader = new 
>> BufferedReader(Channels.newReader(readChannel, "UTF8"));
>> String line = reader.readLine();
>> System.out.println("line = " + line);
>> readChannel.close();
>>  }
>> catch (IOException e) { 
>> result = "Failed to read file";
>> e.printStackTrace();
>> }
>> return result;
>> }
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to