如何在响应钛中保存或打开pdf Viewer中的pdf文件

时间:2017-06-02 11:39:25

标签: titanium titanium-alloy

我想点击打开pdf文件。

我尝试了以下代码,但它并没有帮助我。它给错误无法读取文件

var xhr = Ti.Network.createHTTPClient({
    onload : function(e) {
        var f = Ti.Filesystem.getFile(Ti.Filesystem.applicationDataDirectory, 'file.pdf');
        Ti.API.info('file == ' + f);
        Ti.API.info('response = ' + this.responseData);
        Ti.API.info('response = ' + JSON.stringify(this.responseData));
        f.write(this.responseData);
        Ti.API.info('write file == ' + f.write(this.responseData));
        Ti.API.info('filepath == ' + f.nativePath);
        Ti.API.info('get filepath == ' + f.getNativePath());
        Ti.Android.currentActivity.startActivity(Ti.Android.createIntent({
            action : Ti.Android.ACTION_VIEW,
            type : 'application/pdf',
            data : f.nativePath
        }));
    },
    onerror : function(e) {
        Alloy.Globals.loading.hide();
        alert("Cannot retrieve PDF form web site");
    },
    timeout : 5000
});

xhr.open('GET', "https://www.mbta.com/uploadedfiles/Documents/Schedules_and_Maps/Rapid%20Transit%20w%20Key%20Bus.pdf");
xhr.send();

但我收到错误,因为文档路径无效。

我尝试了不同的方式,使用webview仍然没有在我的应用程序上获得pdf。

var win = Ti.UI.createWindow({
    backgroundColor : '#fff'
});

var pdfViewer = Ti.UI.createWebView({
    url : "http://lkn.ccomsys.com/assets/media/datafiles/gov/vvvv_Shehnai_Order1.pdf",
    width : Titanium.UI.SIZE,
    height : Titanium.UI.SIZE
});
Ti.API.info('pdfviewer == ' + JSON.stringify(pdfViewer));
win.add(pdfViewer);

win.open();

提前致谢。

1 个答案:

答案 0 :(得分:0)

我把它排除了

第1步:创建目录和文件。

步骤2:写入对创建文件的响应。

第3步:使用android intent打开pdf。

以下是完整的代码

var xhr = Ti.Network.createHTTPClient({
    onload : function(e) {
        Alloy.Globals.loading.hide();
        var Settings = Titanium.Filesystem.getFile(Titanium.Filesystem.tempDirectory, 'Settings');
        Ti.API.info("Created Settings: " + Settings.createDirectory());
        Ti.API.info('Settings ' + Settings);
        var newFile = Titanium.Filesystem.getFile(Settings.nativePath, 'Setting.pdf');
        Ti.API.info('new file == ' + newFile);
        if (newFile.exists() === false) {
            // you don't need to do this, but you could...
            newFile.write(this.responseData);
        }

        Ti.API.info('response = ' + this.responseData);
        Ti.API.info('response = ' + JSON.stringify(this.responseData));

        if (newFile.exists()) {
            newFile.write(this.responseData);
            Ti.API.info('newfile: ' + newFile.read());
        }
        Ti.Android.currentActivity.startActivity(Ti.Android.createIntent({
            action : Ti.Android.ACTION_VIEW,
            type : 'application/pdf',
            data : newFile.nativePath
        }));
    },
    onerror : function(e) {
        Alloy.Globals.loading.hide();
        alert("Cannot retrieve PDF form web site");
    },
    timeout : 5000
});

xhr.open('GET', "https://www.mbta.com/uploadedfiles/Documents/Schedules_and_Maps/Rapid%20Transit%20w%20Key%20Bus.pdf");
xhr.send();