0
子字符串使用java中的流緩衝區類從字符串中刪除。 輸出來錯:使用java中的流緩衝區類從字符串中刪除子串字符串錯誤 - 驗證
請覈實該計劃
見我的輸出和解釋程序是什麼? 什麼是必要的輸出,以及程序中必須做些什麼改變才能獲得更正輸出?
import java.io.*;
public class Strbuff
{
public static void main(String arg[])throws IOException
{
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
String str;
try
{
System.out.println("Enter your name");
str=in.readLine();
str+="\nThis is example for string Buffer class and its function";
StringBuffer strbuf=new StringBuffer();
strbuf.append(str);
System.out.println(strbuf);
strbuf.delete(0,str.length());
strbuf.append("hello");
strbuf.insert(5,"-java");
System.out.println(strbuf);
strbuf.reverse();
System.out.println("Reversed string");
System.out.println(strbuf);
strbuf.reverse();
System.out.println(strbuf);
strbuf.setCharAt(5,' ');
System.out.println(strbuf);
System.out.println("Character at 6th position");
System.out.println(strbuf.substring(3,7));
strbuf.deleteCharAt(3);
System.out.println(strbuf);
System.out.println("Capacity of the string Buffer object");
System.out.println(strbuf.capacity());
strbuf.delete(6,strbuf.length());
System.out.println("The string with first 6 letters");
System.out.println(strbuf);
}
catch(StringIndexOutOfBoundsException e)
{
System.out.println(e.getMessage());
}
}
}
「什麼是必須的輸出以及在程序中必須進行哪些更改以獲得更正的輸出?」這是你的計劃:我們應該如何知道你想要做什麼? –
你期望輸出什麼? – ParkerHalo
其實,請解釋一下這個話題: 子串使用java中的流緩衝類去掉一個字符串 是我的o/p與它有關嗎? – Vikraman