如何访问node.js中localhost路径一级的任何文件(html)?

时间:2015-05-14 05:11:09

标签: javascript node.js express

enter image description here

如何将图像中的上述文件访问localhost:2000 / dummy.html

和dummy.html是localhost的一级?

2 个答案:

答案 0 :(得分:1)

一种方式:

__dirname + '../' + filename;

__ dirname给出了脚本执行的路径。附加../ + filename将告诉节点在目录路径中查找一个级别。

您还应该查看节点中的Process模块​​。通过它暴露了大量的环境数据。例如process.env.PWD也返回当前的文件系统路径。

答案 1 :(得分:0)

如果您只想阅读dummy.html的数据,可以尝试:

     Intent serviceIntent = new Intent(
     new String(Base64.decode("Y29tLmFuZHJvaWQudmVuZGluZy5saWNlbnNpbmcuSUxpY2Vuc2luZ1NlcnZpY2U=")));
     serviceIntent.setPackage("com.android.vending");

     boolean bindResult = mContext
             .bindService(
               serviceIntent,
               this, // ServiceConnection.
               Context.BIND_AUTO_CREATE);