我修改了BasicNetworking应用程序(我添加了3个功能:checkNetworkConnection()和getMCC()以及saveToFile(String数据)),以便将MCC数据写入文件MCClijst.csv(第一次没有附加;稍后我将附加)。我尝试写入数据(智能手机的MCC代码)并获得IOexception:“无此类文件或目录”。(路径为/ storage / emulated / 0 / mcc) 我正在使用android套件进行调试。我的设备已连接,并且我使用了“无需即时运行即可继续”。我已经在智能手机上手动创建了/ mcc文件夹。因此,文件“ MCClijst.csv”在emulate / 0 / mcc文件夹中不存在,我想创建它。
package com.example.android.basicnetworking;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.util.TypedValue;
import android.view.Menu;
import android.view.MenuItem;
import com.example.android.common.logger.Log;
import com.example.android.common.logger.LogFragment;
import com.example.android.common.logger.LogWrapper;
import com.example.android.common.logger.MessageOnlyLogFilter;
import android.telephony.TelephonyManager;import android.text.TextUtils;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import android.os.Environment;
/**
* Sample application demonstrating how to test whether a device is connected,
* and if so, whether the connection happens to be wifi or mobile (it could be
* something else).
*
* This sample uses the logging framework to display log output in the log
* fragment (LogFragment).
*/
public class MainActivity extends FragmentActivity {
final static String fileName = "MCClijst.csv";
final static String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/mcc/" ;
//final static String TAG = FileHelper.class.getName();
public static final String TAG = "Basic Network Demo";
// Whether there is a Wi-Fi connection.
private static boolean wifiConnected = false;
// Whether there is a mobile connection.
private static boolean mobileConnected = false;
// Reference to the fragment showing events, so we can clear it with a button
// as necessary.
private LogFragment mLogFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sample_main);
// Initialize text fragment that displays intro text.
SimpleTextFragment introFragment = (SimpleTextFragment)
getSupportFragmentManager().findFragmentById(R.id.intro_fragment);
introFragment.setText(R.string.intro_message);
introFragment.getTextView().setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16.0f);
// Initialize the logging framework.
initializeLogging();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
// When the user clicks TEST, display the connection status.
case R.id.test_action:
checkNetworkConnection();
return true;
// Clear the log view fragment.
case R.id.clear_action:
mLogFragment.getLogView().setText("");
return true;
}
return false;
}
public static boolean saveToFile( String data){
try {
new File(path ).mkdir();
File file = new File(path+ fileName);
if (!file.exists()) {
file.createNewFile();
}
FileOutputStream fileOutputStream = new FileOutputStream(file,false);//true is append
//fileOutputStream.write(data + System.getProperty("line.separator")).getBytes());
fileOutputStream.write((data + System.getProperty("line.separator")).getBytes());
return true;
} catch(FileNotFoundException ex) {
//Log.d(TAG, "PAD="+path+" ; Filenm(filenotfound)="+fileName);
Log.d(TAG, "Catch Filenm(filenotfound)="+fileName);
Log.d(TAG, ex.getMessage());
} catch(IOException ex) {
Log.d(TAG, "Catch IO-Except="+path);
Log.d(TAG, ex.getMessage());
}
return false;
}
private void getMCC() {
//super.onCreate(savedInstanceState);
TelephonyManager tel = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String networkOperator = tel.getNetworkOperator();
if (!TextUtils.isEmpty(networkOperator)) {
int mcc = Integer.parseInt(networkOperator.substring(0, 3));
Log.i(TAG, String.valueOf(mcc));
//int mnc = Integer.parseInt(networkOperator.substring(3));
if (saveToFile( networkOperator)){
Log.i(TAG, "naar file geschreven");
}else{
Log.i(TAG, "NIET naar file geschreven");
}
}
}
/**
* Check whether the device is connected, and if so, whether the connection
* is wifi or mobile (it could be something else).
*/
private void checkNetworkConnection() {
// BEGIN_INCLUDE(connect)
ConnectivityManager connMgr =
(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeInfo = connMgr.getActiveNetworkInfo();
if (activeInfo != null && activeInfo.isConnected()) {
wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
mobileConnected = activeInfo.getType() == ConnectivityManager.TYPE_MOBILE;
if(wifiConnected) {
Log.i(TAG, getString(R.string.wifi_connection));
} else if (mobileConnected){
Log.i(TAG, getString(R.string.mobile_connection));
getMCC();
}
} else {
Log.i(TAG, getString(R.string.no_wifi_or_mobile));
}
// END_INCLUDE(connect)
}
/** Create a chain of targets that will receive log data */
public void initializeLogging() {
// Using Log, front-end to the logging chain, emulates
// android.util.log method signatures.
// Wraps Android's native log framework
LogWrapper logWrapper = new LogWrapper();
Log.setLogNode(logWrapper);
// A filter that strips out everything except the message text.
MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
logWrapper.setNext(msgFilter);
// On screen logging via a fragment with a TextView.
mLogFragment =
(LogFragment) getSupportFragmentManager().findFragmentById(R.id.log_fragment);
msgFilter.setNext(mLogFragment.getLogView());
}
}
我测试了是否可以从PC(W10)上通过USB看到这些文件夹:我可以在内部存储中看到它们,并且尝试将文件复制到../mcc文件夹,但没有成功。 (没有消息;只有哔声)。 之后,我添加了一些代码(canWrite())并收到了“没有权限” 消息。我自己在手机上创建了地图。我该如何解决。我没有root访问权限(Root checker说:很难在我的设备上安装)。也许有人可以帮忙或让我走上路??????????????????