gpt4 book ai didi

android - 从 SD 卡读取文本文件并使用手机间隙显示

转载 作者:太空宇宙 更新时间:2023-11-03 13:02:01 26 4
gpt4 key购买 nike

我有 example.txt 文件 sdcard,我想使用手机间隙显示它。我是 android 的新手,手机间隙请帮忙。这是我的 example.txt 文件:

     <h2>This file is in sdcard</h2>

这是我的 phonegap.java

    package com.example.phonegap;
import org.apache.cordova.DroidGap;

public class Phonegap extends DroidGap{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/myfile.html");
}

}

这是 www 中的 myfile.html:

       <!DOCTYPE html>
<html>
<head>
<title>FileReader Example</title>

<script type="text/javascript" charset="utf-8" src="cordova-1.5.0.js"></script>
<script type="text/javascript" charset="utf-8">

// Wait for PhoneGap to load
//
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}

// PhoneGap is ready
//
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}

function gotFS(fileSystem) {
fileSystem.root.getFile("file:///sdcard/example.txt", {create: true}, gotFileEntry, fail);
}

function gotFileEntry(fileEntry) {
fileEntry.file(gotFile, fail);
}

function gotFile(file){
readDataUrl(file);
readAsText(file);
}

function readDataUrl(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as data URL");
console.log(evt.target.result);
};
reader.readAsDataURL(file);
}

function readAsText(file) {
var reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as text");
console.log(evt.target.result);
};
reader.readAsText(file);
}

function fail(evt) {
console.log(evt.target.error.code);
}

</script>
</head>
<body>
<h1>Example</h1>
<p>Read File</p>
</body>
</html>

最佳答案

改变这一行:

fileSystem.root.getFile("file:///sdcard/example.txt", {create: true}, gotFileEntry, fail);

是这样的:

fileSystem.root.getFile("example.txt", {create: false}, gotFileEntry, fail);

假设您要读取的文件是“example.txt”,位于/sdcard文件夹中。

关于android - 从 SD 卡读取文本文件并使用手机间隙显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10072400/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com