常用工具類

2021-10-05 09:39:10 字數 1888 閱讀 7735

reflectionutils、objectutils

public

static

void

main

(string[

] args)

;//判斷兩個陣列是否相等

system.out.

println

(arrays.

equals

(arr, arr));

//true

//列印陣列

string s1 = arrays.

tostring

(arr)

; system.out.

println

(s1)

;//[f, a, b]

string s2 = stringutils.

join

(arr)

; system.out.

println

(s2)

;//fab

string s3 = stringutils.

join

(arr,

"==");

system.out.

println

(s3)

;//f==a==b

//陣列變stream流

arrays.

stream

(arr)

.foreach

(system.out:

:println)

;//陣列生成list

list

list = arrays.

aslist

(arr)

; system.out.

println

(s2)

;//fab

//查詢陣列元素的索引

int a = arrays.

binarysearch

(arr,

"a")

; system.out.

println

(a);

//1//陣列

string s5 = string.

join

(","

, arr)

; system.out.

println

(s5)

; string s6 = string.

join

(","

, list)

; system.out.

println

(s6)

;//判斷是否為null或「」或「 」

boolean r = stringutils.

isnotblank

(null)

; system.out.

println

(r);

//將null和「 」轉換為「」

string s7 = stringutils.

trimtoempty

(" ");

system.out.

println

(s7)

;//將null和「 」轉換為null

string s8 = stringutils.

trimtonull

(" ");

system.out.

println

(s8)

; string s9 = stringutils.

strip

("a\tb c d");

system.out.

println

(s9)

;}

常用工具類

本講內容 常用工具類 陸續更新 author administrator public static context context public void oncreate public static context getcontext 2 提供所有activity呼叫 基類 author ad...

常用工具類 作業

1.生成10個 10,23 之間的隨機整數 random 類的nextdouble 或nextint 實現public class randomdemo for int i 1 i 10 i 1.以樹狀結構輸出計算機某個指定資料夾下的所有的檔案和子資料夾名稱。public class filedem...

Android Studio常用工具類

今天給大家介紹幾個studio中常用到的工具類 簡單明瞭 第乙個butterknife 首先介紹一些它,butterknife 是乙個註解框架,可以代替 findviewbyid butter knife優勢 在使用中需要注意的事項 1.activity butterknife.bind this ...