Namespaces
Variants
Actions
(Difference between revisions)

Como listar arquivos da pasta raiz em Java ME

Jump to: navigation, search
 
m (Bot change of links to internal format.)
Line 52: Line 52:
  
 
==Veja também==
 
==Veja também==
* [http://wiki.forum.nokia.com/index.php/How_to_write_data_to_a_file_in_Java_ME How to write data to a file in Java ME]
+
* [[How to write data to a file in Java ME]]
* [http://wiki.forum.nokia.com/index.php/How_to_read_an_image_from_Gallery_in_Java_ME How to read an image from Gallery in Java ME]
+
* [[How to read an image from Gallery in Java ME]]
* [http://wiki.forum.nokia.com/index.php/How_to_list_files_and_folders_in_Java_ME How to list files and folders in Java ME]
+
* [[How to list files and folders in Java ME]]

Revision as of 06:33, 19 May 2011


Original: How to list root file systems in Java ME (Inglês)

Resumo

Como listar arquivos da pasta raiz em Java ME. A API FileConnection(JSR-75) e seu método FileSystemRegistry.listRoots() existem para este fim.

O código para teste do MIDlet:

Código fonte: RootMIDlet.java

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import java.util.Enumeration;
import javax.microedition.io.file.*;
 
public class RootMIDlet extends MIDlet implements CommandListener {
private Form form;
private Command exitCommand;
 
public void startApp() {
form = new Form("Root list");
exitCommand = new Command("Exit", Command.EXIT, 1);
form.addCommand(exitCommand);
form.setCommandListener(this);
Display.getDisplay(this).setCurrent(form);
createRootList();
}
 
public void pauseApp() {
}
 
public void destroyApp(boolean unconditional) {
}
 
protected void createRootList() {
form.append("Roots:\n");
Enumeration drives = FileSystemRegistry.listRoots();
while (drives.hasMoreElements()) {
String driveString = drives.nextElement().toString();
form.append(driveString + "\n");
}
}
 
public void commandAction(Command c, Displayable d) {
if (c == exitCommand) this.notifyDestroyed();
}
}

Veja também

165 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved