LWUIT ブラウザーの例で HttpRequestHandler を使用しています。HttpRequestHandler を初期化すると、java.lang.Error: Static initializer: java.lang.NullPointerException が発生します。これは startApp の私のコードです。public void startApp() {
Display.init(this);
try {
InputStream imageStream= Home.class.getResourceAsStream("tipster.res");
//String filesPathAndName = url.getPath();
Resources r = Resources.open(imageStream);
UIManager.getInstance().setThemeProps(r.getTheme("Theme 2"));
} catch (IOException ioe) {
ioe.printStackTrace();
// Do something here.
}
HttpRequestHandler handler = new HttpRequestHandler();
HTMLComponent h = new HTMLComponent(handler);
h.setPage("http://m.google.com");
ffForm.addComponent(h);
}