Como listar arquivos da pasta raiz em Java ME
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot addition of Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update of Template:ArticleMetaData) |
||
| Line 12: | Line 12: | ||
|id= <!-- Article Id (Knowledge base articles only) --> | |id= <!-- Article Id (Knowledge base articles only) --> | ||
|language=Lang-Portuguese | |language=Lang-Portuguese | ||
| − | |translated-by= | + | |translated-by=[[User:Maiconherverton]] |
| − | |translated-from-title= | + | |translated-from-title=How to list root file systems in Java ME |
|translated-from-id= <!-- Id of translated revision --> | |translated-from-id= <!-- Id of translated revision --> | ||
|review-by=<!-- After re-review: [[User:username]] --> | |review-by=<!-- After re-review: [[User:username]] --> | ||
| Line 20: | Line 20: | ||
|update-timestamp=<!-- After significant update: YYYYMMDD --> | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
|creationdate=20090917 | |creationdate=20090917 | ||
| − | |author=[[User: | + | |author=[[User:Jarmlaht]] |
}}[[Category:Java ME]][[Category:Lang-Portuguese]][[Category:Code Examples]] | }}[[Category:Java ME]][[Category:Lang-Portuguese]][[Category:Code Examples]] | ||
| Line 77: | Line 77: | ||
* [[How to read an image from Gallery in Java ME]] | * [[How to read an image from Gallery in Java ME]] | ||
* [[How to list files and folders in Java ME]] | * [[How to list files and folders in Java ME]] | ||
| + | <!-- Translation --> [[en:How to list root file systems in Java ME]] | ||
Revision as of 07:45, 7 December 2011
Dados do artigo
Artigo
Tradução:
Originado de How to list root file systems in Java ME
Por maiconherverton
Última alteração feita por hamishwillee
em 07 Dec 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();
}
}

