📄 digestauth.java
字号:
package com.enterprisej2me.MIDlets; import javax.microedition.midlet.*;import javax.microedition.io.*;import javax.microedition.lcdui.*;import com.enterprisej2me.HttpConnections.*; public class DigestAuth extends MIDlet implements CommandListener { private Display display; private Command exitCommand; public DigestAuth () throws Exception { display = Display.getDisplay(this); exitCommand = new Command("EXIT", Command.CANCEL, 1); } public void startApp() { Form form = new Form("Digest Auth client"); try { String username = getAppProperty("DigestAuthUser"); String password = getAppProperty("DigestAuthPass"); String url = getAppProperty("DigestAuthURL"); HttpClient client = new HttpClient (); Handler h = new DigestAuthHandler(username, password); client.addHandler( h ); client.setUrl( url); client.setRequestMethod( HttpConnection.GET ); byte [] result = client.query(null); form.append( new String(result) ); } catch (Exception e) { e.printStackTrace(); form.append("Sorry, there is an error fetching"); } form.addCommand(exitCommand); // The CommandListener is this MIDlet itself. form.setCommandListener(this); // Display the form on the LCD screen. display.setCurrent(form); } public void pauseApp() { } public void destroyApp(boolean unconditional) { } public void commandAction(Command command, Displayable screen) { if (command == exitCommand) { destroyApp(false); notifyDestroyed(); } else { // Do nothing. } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -