尝试显示IP地址时应用程序崩溃 - 权限?

时间:2017-02-25 06:53:52

标签: android

当我调用下面的方法时,我的应用程序崩溃了。在我的physicsBody中,pplication有权访问wifi状态。

 if (Request.Files["Photo"] != null)
            {
                string path = "/uploads/" + DateTime.Now.Ticks.ToString() + "_" + Request.Files["Photo"].FileName;
                Request.Files["Photo"].SaveAs(Server.MapPath(path));
                SP.PhotoPath = path;

                //The MapPath method maps the specified relative or virtual path to the 
                //corresponding physical directory on the server.
            }

这是错误:

AndroidManifest.xml

请建议一种解决此错误的方法。提前谢谢。

1 个答案:

答案 0 :(得分:0)

您是否正在测试上述版本的棒棒糖?您必须在show()方法的代码中明确请求权限。

或查看此链接可能会对您有所帮助..

Unable to listen to android wi-fi manager's state?