StringBuilder to Array of Strings how to convert

前端 未结 2 563
挽巷
挽巷 2020-12-21 06:25

cant anything find or read about this problem ( it\'s problem only for me but maybe someone know way to fix it.

i have function which reading from asset folder

2条回答
  •  感情败类
    2020-12-21 07:05

    To convert stringbuilder to string array do the following:

    string sbString = sb.toString();
    String[] ary = sbString.split("TABTAB");
    

提交回复
热议问题