Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Read text file in google GWT?

Tags:

file

text

gwt

I am writing a webpage using GWT. Now I need to read a text file and display the content in the webpage but have no idea how to do that with GWT.

It is very nice if there is any way in GWT that I can read .properties file. (Please note that this is not the properties file of localization that GWT has already supported )

Does anyone have an idea, please?

Thanks.

like image 782
ipkiss Avatar asked Apr 25 '10 13:04

ipkiss


2 Answers

You can read files in your GWT app using RequestBuilder

new RequestBuilder(RequestBuilder.GET, "path/to/file.txt").sendRequest("", new RequestCallback() {
  @Override
  public void onResponseReceived(Request req, Response resp) {
    String text = resp.getText();
    // do stuff with the text
  }

  @Override
  public void onError(Request res, Throwable throwable) {
    // handle errors
  }
});
like image 78
Jason Hall Avatar answered Nov 03 '22 09:11

Jason Hall


If the text file is part of your GWT project, you can include it in a ClientBundle. If it's not part of your project, then the RequestBuilder sounds like the right answer.

I posted a simple example project to show how to use a ClientBundle.

String greetings = Assets.INSTANCE.greetings().getText();
final Greeter greeter = new Greeter();
greeter.loadGreetings(Arrays.asList(greetings.split("\\n")));
like image 30
Don Kirkby Avatar answered Nov 03 '22 09:11

Don Kirkby