Я пробовал код от MallikarjunM ,
но это не работает для меня :-(.
У меня есть немного переписать его в мой основной проект Android Studio с пустой деятельностью с одним textViev "pokusnejText".
вот мой код MainActivity.kt:
package com.example.zapisdosouboru
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.os.Environment
import android.widget.TextView
import java.io.File
import java.io.PrintWriter
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val pokusnejText = findViewById<TextView>(R.id.pokusnejText)
var answer : String = ""
val sd_main = File(Environment.getExternalStorageDirectory().toString() + "/smazat" )
var success = true
if (!sd_main.exists()) {
success = sd_main.mkdir()
if (success) {
answer = "folder created"
} else {
answer = "folder can not be created"
}
}
if (success) {
val sd = File("testingFile.txt")
if (!sd.exists()) {
success = sd.mkdir()
}
if (success) {
// directory exists or already created
val dest = File(sd, "testingFile.txt")
try {
// response is the data written to file
PrintWriter(dest).use { out -> out.println(answer) }
answer = "writed to" + sd.toString()
} catch (e: Exception) {
answer = "can not be written"
}
} else {
answer = "folder or file does not exists"
}
}
pokusnejText.text = answer
}
}
и вот мой AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.zapisdosouboru">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
первое, что я переписал, было
val sd_main = File(Environment.getExternalStorageDirectory()+"/yourlocation")
до
val sd_main = File(Environment.getExternalStorageDirectory().toString() + "/yourlocation" )
потому что без toString () был отмечен красным плюс ...
но все равно не работает и отвечает, что не может создать папку ...
Я пробовал в эмуляторе Android Studio с Android 6.0
Некоторые дополнительные вопросы:
Я очень запутался с функцией File (), используемой в коде один раз с одним параметром и второй раз с двумя.
Существует ли для Kotlin какая-то похожая веб-страница http://www.cplusplus.com/ - я не могу найти такую полезную, как для c ++.
Спасибо за помощь
fik236