创建Javascript本地应用程序(在浏览器中运行)?

前端之家收集整理的这篇文章主要介绍了创建Javascript本地应用程序(在浏览器中运行)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想编写一个使用 Javascript和HTML的应用程序与用户界面.该应用程序不会真正需要互联网连接,但需要访问用户的本地文件.

我的第一个想法是,由于访问本地文件的安全限制,这在浏览器中是不可能的.

我的第二个想法是尝试直接从C使用webkit,并使用Python而不是Javascript,但这似乎相当复杂,我觉得使用Qt过度.

我的第三个想法是使用一个签名的Java小程序来进行所有本地访问,但是我也不太确定.

有什么建议我应该做什么

解决方法

我承认,我很少知道这一点,但是听起来像你以后是 XUL提供的.

从主页:

XUL (XML User Interface Language) is Mozilla’s XML-based language that lets you build feature-rich cross platform applications that can run connected or disconnected from the Internet.

Web developers already familiar with Dynamic HTML (DHTML) will learn XUL quickly and can start building applications right away.

关于文件系统访问:https://developer.mozilla.org/en/Code_snippets/File_I//O

This article describes local file input/output in chrome JavaScript.

You access the file system using Mozilla XPCOM components. A list of resources and interfaces for local I/O is available for both Files and Streams at XUL Planet.

由于我不熟悉,我会把它留给社区来决定这个答案是否有价值.

编辑:使这个答案成为一个社区维基,因为我没有太多的真实信息提供.

原文链接:https://www.f2er.com/js/153586.html

猜你在找的JavaScript相关文章