NetBlog主题
43
val s = "罗分明"val byteArray = s.toByteArray(Charsets.UTF_8)//打印输出 e7 bd 97 e5 88 86 e6 98 8eprintln(byteArray.toHexString().chunked(2).joinToString(" "))val s2 = String(byteArray, Charsets.UTF_8)//打印输出 罗分明println(s2)本文来自www.luofenmin…
2368
下载和安装APP核心源码package com.example.myapplication;import android.app.ProgressDialog;import android.content.Context;import android.content.Intent;import android.net.Uri;import android.os.Build;import android.os.Handler;import android.support.v4.…
2255
找到build.gradle 文件,设置版本信息 defaultConfig {applicationId "com.example.testapp"minSdkVersion 16targetSdkVersion 30versionCode 1versionName "1.01"testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"}获取版本信息/** 获取当前程序的版…
2361
public String get(String urlAddress) {try {URL url = new URL(urlAddress);HttpURLConnection connection = (HttpURLConnection) url.openConnection();//开启连接connection.connect();//连接服务器if (connection.getResponseCode() == 200) {//使用字符流形式进行回复In…
2251
new Thread( new Runnable(){@Overridepublic void run() {final EditText editText=findViewById(R.id.et_1);//MainActivity为当前UI的 Activitynew Handler(MainActivity.this.getMainLooper()).post(new Runnable() {@Overridepublic void run() {editText.setText("新的内…
5788
数据库帮助类public class DatabaseHelper extends SQLiteOpenHelper {//转载请保留 http://www.luofenming.com/show.aspx?id=ART2020100600001/*** 如果有SQLite数据文件 则不创建新的SQLite数据库文件* @param context 上下文* @param fileName 数据库文件名*/public Data…
1831
public void save(String fileName,String content) {try {FileOutputStream fileOutputStream=openFileOutput(fileName,MODE_PRIVATE);fileOutputStream.write(content.getBytes());fileOutputStream.close();} catch (IOException e) {e.printStackTrace();}}public Str…
1704
/** @fimeName 存储的文件名 为xml格式文件* @key 存储数据的键* @value 存储数据* */public void writeData(String fimeName, String key, String value) {// fileName文件名 MODE_PRIVATE 为防问权限 文件只能当前本应用读写SharedPreferences sharedPreferences = getSha…
1993
在这用到了支持点有:方法传递、参数传递activity_custom_dialog.xml 文件代码?xml version="1.0" encoding="utf-8"?LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_pare…
1724
activity_web_view.xml文件内容?xml version="1.0" encoding="utf-8"?LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"WebViewandroid:id="@+id/wv_1"android:la…