码迷,mamicode.com
首页 > 编程语言 > 详细

Java基础知识强化08:将字符串倒序输出(包括空格)的几种方法

时间:2015-08-30 19:13:15      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

1.最容易想到的估计就是利用String类的toCharArray(),再倒序输出数组的方法了:

 1 package himi.hebao05;
 2 
 3 public class TestDemo02 {
 4     public static void main(String[] args) {
 5         int i = 0;
 6         String text = "hebao I love you!";
 7         String result = " ";
 8         char[] charArray = text.toCharArray();
 9         for(int j = charArray.length-1; j>=0; j--) {
10                 result += charArray[j];
11         }
12         System.out.println(result);
13     }
14   }  

这里将String字符串类型的数据(末尾没有\0)转化为char[]字符数组,这样就可以一个个控制倒序输出:结果如下:

技术分享

 

2.字符串定义为String类,转化为一个StringBuffer类,用StringBuffer类中的reverse()方法直接倒序字符串。

 1 package himi.hebao05;
 2 
 3 public class TestDemo02 {
 4     public static void main(String[] args) {
 5         int i = 0;
 6         String text = "hebao I love you!";
 7   8         reverseString1(text);
 9     }
10     
11     
12     public static void reverseString1(String text) {
13         StringBuffer stringBuffer = new StringBuffer(text);
14         System.out.print(stringBuffer.reverse());
15     }
16     
17 }

运行的结果如下:

技术分享

 

3.对字符串转化为byte[] ,byte[]是将字符串每个字符存储为byte类型,但是不是char类型。所以这里不能直接倒序输出(不能类似1那样)。但是我们可以将字符串转化为byte[]之后进行元素的首尾对称交换,这样可以实现倒序输出的目的:

 1 package himi.hebao05;
 2 
 3 public class TestDemo02 {
 4     public static void main(String[] args) {
 5         int i = 0;
 6         String text = "hebao I love you!";
 7         System.out.println(reverseString2(text));
 8 
 9     }
10     
11     public static String  reverseString2(String text) {
12         if(text == null || text.length() <0 ) {
13             return "ERROR";
14         }
15         byte[] bytes = text.getBytes();
16         for(int i=0; i<bytes.length/2; i++) {
17             byte b= bytes[i];
18             bytes[i] = bytes[bytes.length-1-i];
19             bytes[bytes.length-1-i] = b;
20         }
21         
22         return  new String(bytes);
23     }
24 
25 }

输出结果如下:

技术分享

 

Java基础知识强化08:将字符串倒序输出(包括空格)的几种方法

标签:

原文地址:http://www.cnblogs.com/hebao0514/p/4771318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!