我有一个页面html,现在我想将其带到android进入webview。 页面可以将文件保存并加载到计算机。
现在,将其带到android时。我想使用功能。
加载文件:
[Fact]
public void GetMessage_ReturnsString()
{
//Arrange
// Inserting some data here to the InMemoryDB
var memoryCacheMock = new Mock<IMemoryCache>();
//Act
var result = new DataService(dbConnectionFactoryMock.Object, memoryCacheMock.Object).GetMessage(1000);
//assert xunit
Assert.Equal("Some message", result);
}
在android中,如何从存储发送文件到功能<input id="loader" type="file" accept=".bin" onchange="run(this.files[0]);">
?
保存文件:
run();
在Android中,如何将save.bin保存到存储中?
有人帮助我。谢谢。
答案 0 :(得分:0)
在您的webView中
webView.getSettings().setAllowFileAccess(true);
编写此代码以允许存储。