gpt4 book ai didi

java - 无法创建 WifiConfiguration

转载 作者:太空宇宙 更新时间:2023-11-04 11:00:46 24 4
gpt4 key购买 nike

我正在尝试创建一个 WifiConfiguration,但是,如果我编写以下内容:

WifiConfiguration conf = new WifiConfiguration();
conf.SSID = String.format("\"%s\"", ssid);

IDE 出现此错误:

unknown class: conf.SSID

我还尝试了以下代码:

WifiConfiguration conf ;
conf = new WifiConfiguration();

但是,它现在给出了错误:

Invalid method declaration

可能出了什么问题?我确实有

import android.net.wifi.WifiConfiguration;

在我的文件的开头

Here is an image of the actual code

最佳答案

您不能拥有 statement在类主体中( see this )。您需要将 conf.SSID 移至 onCreate() 方法。另请浏览 activity lifecycle .

关于java - 无法创建 WifiConfiguration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46926875/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com