⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userdatascreen.java

📁 手机登陆wap的代码
💻 JAVA
字号:
import javax.microedition.io.*;
import java.io.*;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.util.*;
public class UserDataScreen extends Form implements CommandListener
{
	public UserDataScreen(Vector v)
	{
		super("用户数据") ;
		Enumeration enum = v.elements() ;
 		while(enum.hasMoreElements())
 		{
 			append((String)enum.nextElement());
 		}
		addCommand(new Command("离开",Command.EXIT,1)) ;
		addCommand(new Command("回主功能",Command.BACK,1)) ;
		setCommandListener(this) ;
	}
	public void commandAction(Command c,Displayable s)
	{
		String cmd = c.getLabel() ;
		Navigator.flow(cmd) ;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -