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

📄 help.java

📁 J2ME文件管理系统 操作文件的源码。界面很不错
💻 JAVA
字号:
package cn.zqk.ui;


import java.util.Enumeration;

import javax.microedition.io.file.FileConnection;
import javax.microedition.io.file.FileSystemRegistry;
import javax.microedition.lcdui.*;

public class Help extends Form  implements CommandListener{
	
	private Command back;
	private  MainMange mainMange;
	
	
	public Help(String title) {
		super(title);
		String info="";
		info = info + "This is the help information.\n";
		info = info + "1. please check the 11...\n";
		info = info + "2. please check the 22...\n";
		
		append(info);
		  
		back = new Command("Back", Command.BACK, 1);
		addCommand(back);
		setCommandListener(this);

	}	
	
	public void commandAction(Command c, Displayable d) {
		if (c == back) {
			mainMange = new MainMange();
			GarbageClear.instance.disp.setCurrent(mainMange);			
		}
	}
}

⌨️ 快捷键说明

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