如何将图像中的上述文件访问localhost:2000 / dummy.html
和dummy.html是localhost的一级?
答案 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);