Como listar arquivos da pasta raiz em Java ME
hamishwillee
(Talk | contribs) m (Bot change of links to internal format.) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update of Template:ArticleMetaData - Deleting duplicate original translation link) |
||
| (4 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Java ME | + | {{ArticleMetaData |
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') --> | ||
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities=<!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |id= <!-- Article Id (Knowledge base articles only) --> | ||
| + | |language=Lang-Portuguese | ||
| + | |translated-by=[[User:Maiconherverton]] | ||
| + | |translated-from-title=How to list root file systems in Java ME | ||
| + | |translated-from-id=50976 | ||
| + | |review-by=<!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp=<!-- After re-review: YYYYMMDD --> | ||
| + | |update-by=<!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate=20090917 | ||
| + | |author=[[User:Jarmlaht]] | ||
| + | }}[[Category:Java ME]][[Category:Lang-Portuguese]][[Category:Code Examples]] | ||
| − | |||
==Resumo== | ==Resumo== | ||
| Line 55: | Line 76: | ||
* [[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]] | ||
Latest revision as of 11:33, 8 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 08 Dec 2011
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();
}
}

