91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中String的一些常見方法深入解析

發布時間:2021-09-04 16:30:42 來源:億速云 閱讀:119 作者:chen 欄目:web開發

這篇文章主要介紹“java中String的一些常見方法深入解析”,在日常操作中,相信很多人在java中String的一些常見方法深入解析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java中String的一些常見方法深入解析”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

package countio;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;public class MyUtil {    /*
     * 工具類中的方法都是靜態方式訪問的 因此將構造器私有不允許創建對象(絕對好習慣)     */
    private MyUtil(){        throw new AssertionError();
    }    /*
     * @param filename 文件名
     * @param word  字符串
     * @return 字符串在文件中出現的次數     */
    public static int countWorInFile(String filename,String word){        int counter=0;
        FileReader fr = null;
        BufferedReader br = null;        try{
            fr = new FileReader(filename);
            br = new BufferedReader(fr);//字符緩存輸入流(從文件--輸入-->程序)
            String line = null;            while((line = br.readLine())!= null){                int index = -1;                //每一次讀取到的字符串一定大于等于所要找的串hello  indexOf返回某個指定的字符串值在字符串中首次出現的位置
                while((line.length() >= word.length() && (index =line.indexOf(word))>=0)){
                    counter++;
                    System.out.println(index);//輸出4   4 
                    line = line.substring(index+word.length());//從0開始                }
            }
        }catch(Exception e){
            e.printStackTrace();
        }finally{            if(br != null){                try {
                    br.close();
                } catch (IOException e) {                    // TODO Auto-generated catch block                    e.printStackTrace();
                }
            }            //fr.close();同上進行先判斷后關閉  防止 還沒建立就關閉掉資源了                }        return counter;
        
    }    public static void main(String[] args){        /*
         * File.separator表示系統相關的分隔符,Linux下為:/ Windows下為:\\
         * heiwhellodohehellod(有2個hello)         */
        //String filename = "\\d:\\hello.txt\\";
        String filename = File.separator+"d:"+File.separator+"hello.txt"+File.separator;        int counter = countWorInFile(filename,"hello");
        System.out.println("字符串hello出現的次數是:"+counter);
    }
}

java中String的一些方法深入解析

1、public String(char[] c,begin,length).
從字符數組c的下標begin處開始,將長度為length的字符數組轉換為字符串。
begin與length可以省略,即將字符數組c轉換為字符串。另:字符數組可改為字節數組byte[] b.
char[] c=new char[]{'j','y','6','a','4','t','9'}; 
String s1=new String(c); 
String s=new String(c,2,3); 
System.out.println(s1);
System.out.println(s);


2、public char[] toCharArray().
字符串裝換成字符數組。


3、public char charAt(int 下標).
返回字符串中指定位置的字符。
String s="jkdfsdf";
char t=s.charAt(3);

4、public byte[] getBytes().
將一個字符串轉換成字節數組,其默認輸出為ASCII值,可通過char強制類型轉換輸出字節。String s="sjdfsdf";
byte[] b=s.getBytes();

5、public String trim().
清除字符串左右兩端的空格。
String s="skkgnsdfsd   ";
System.out.println(s.trim());

6、public int indexOf(String s,int index).
從字符串中查找指定位置之后指定的字符所在的位置。若不指定位置,則從頭開始。
String s="dgdgdg";
int n=s.indexOf("t");//從頭開始查找
int n1=s.indexOf("d",3);//從位置3處開始查找

7、public String substring(int beginindex,int endindex ).
截取所指定的從開始位置到結束位置的字符串,不包含結束字符。結束位置可以省略。
String s="sdgsgghd";
String s1=s.substring(2,4);
String s2=s.substring(2);

8、public String[] split(String s).
通過指定的字符分割字符串。
String s="dfgdhdfgdrhrhgdt";
String ss[]=s.split("d");
for(int i=0;i<ss.length;i++)
System.out.println(ss[i]);

9、public String toUpperCase()./public String toLowerCase().字符大小寫轉換。
String s="dfgdhdfgdrhrhgdt";
String s1=s.toUpperCase();//字符全大寫
String s2=s.toLowerCase();//字符全小寫

10、public boolean startsWith(String s)./public boolean endsWith(String s).檢測字符串是否是以指定的字符開始/結尾。
String s="dfdhffghrtgfjn mjg";
boolean t1=s.startsWith("e");
boolean t2=s.endsWith("h");

11、判斷字符串是否相等,區分大小寫:equals()。不區分大小寫equalsIgnoreCase().
String s="dfgdghdf";
String s1="sfsgsdu";
s.equals(s1);

12、public String replaceAll(String s,String s1).將字符串中的s都替換成s1.
String s="dfgdghdf";
String s1=s.replaceAll("d","f");

package stringtest;public class TestString {    public static void main(String[] args) {        char[] c=new char[]{'j','y','6','a','4','t','9'}; 
        String s1=new String(c); 
        String s=new String(c,2,3); 
    /*    System.out.println(s1.charAt(3));//a
        System.out.println(s);//6a4*/    
        /*char[] c1 = s1.toCharArray();
        for(int i=0; i<c1.length; i++){
            System.out.print(c1[i]+",");//j,y,6,a,4,t,9,
        }*/
        /*String result="";
        byte[] bytes = s1.getBytes();*/
        
        /*String ss="dgdgdg";
        int n=ss.indexOf("t");//從頭開始查找
        int n3=ss.indexOf("d",3);//從位置3處開始查找
        int n1=ss.indexOf("d",1);//從位置1處開始查找
        System.out.println(n);//-1
        System.out.println(n1);//2
        System.out.println(n3);//4*/        
        String dd="sdgsgghd";
        System.out.println(dd.substring(2,4));//gs
        System.out.println(dd.substring(2));//gsgghd    }
}

到此,關于“java中String的一些常見方法深入解析”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

买车| 黄山市| 井研县| 罗山县| 揭东县| 文昌市| 阳朔县| 嘉定区| 临洮县| 济南市| 贵阳市| 阿拉善左旗| 琼海市| 西贡区| 磴口县| 邵阳县| 疏附县| 杭州市| 桂阳县| 宣威市| 沿河| 斗六市| 石城县| 玉溪市| 武清区| 孙吴县| 沈阳市| 龙胜| 吉木萨尔县| 文水县| 陈巴尔虎旗| 当涂县| 伊金霍洛旗| 宣化县| 崇信县| 清河县| 墨竹工卡县| 云浮市| 棋牌| 海口市| 道真|