1. 使用for循环打印数组。

2. 使用Arrays工具类,将数组转化为有序的List打印出来。

3. 使用Arrays工具类,使用Arrays.toString()输出数组内容。

上面三种方法打印数组的示例代码如下:

package com.himi.printarray;

import java.util.Arrays;

public class AnormalArray {

    public static void main(String[] args) {
/**
* 使用for循环打印数组
*/
String names[] = { "Georgianna", "Tenn", "Simon", "Tom" };
System.out.print("[");
for(int i=0; i<names.length; i++) {
if(i== names.length-1) {
System.out.print(names[i]+"]");
} else {
System.out.print(names[i]+", ");
} }
System.out.println(); /**
* 使用Arrays,将数组转化为有序的List打印出来
* <String> List<String> Arrays.asList(String... a)
*/
System.out.println(Arrays.asList(names)); /**
* 使用Arrays.toString,输出数组内容
*/
System.out.println(Arrays.toString(names));
} }

运行结果,如下:

4. 使用Arrays工具类,使用Arrays.deepToString打印2维数组。

代码示例:

package com.himi.printarray;

import java.util.Arrays;

/*
* 使用Arrays.deepToString打印2D数组
*/ public class PrintArray { public static void main(String[] args) { // 2d array, need Arrays.deepToString
String[][] deepArrayStr = new String[][] { { "yiibai1", "yiibai2" }, { "yiibai3", "yiibai4" } };
// Output : [[Ljava.lang.String;@15db9742, [Ljava.lang.String;@6d06d69c]
System.out.println(Arrays.toString(deepArrayStr));
// Output : [[yiibai1, yiibai2], [yiibai3, yiibai4]]
System.out.println(Arrays.deepToString(deepArrayStr)); // 2d array, need Arrays.deepToString
int[][] deepArrayInt = new int[][] { { 1, 3, 5, 7, 9 }, { 2, 4, 6, 8, 10 } };
// Output : [[I@4e25154f, [I@70dea4e]
System.out.println(Arrays.toString(deepArrayInt));
// Output : [[1, 3, 5, 7, 9], [2, 4, 6, 8, 10]]
System.out.println(Arrays.deepToString(deepArrayInt)); } }

5. 使用工具类Gson(Google开发的json解析包),将数组转换为一个Json字符串打印出来。

代码如下:

package com.himi.printarray;

import com.google.gson.Gson;

/**
* 打印一个JSON格式的字符串。
* @author hebao
*
*/
public class PrintUtils {
public static void main(String[] args) {
// TODO Auto-generated method stub
int numbers[] = {1,2,3,4,5,6,7};
String[] days = {"Sun","Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; Gson gson = new Gson();
String numbersJson = gson.toJson(numbers);
String daysJson = gson.toJson(days);
System.out.println("numbers数组转化为JSON数据:"+numbersJson);
System.out.println("days数组转化为JSON数据:"+daysJson); System.out.println("");
System.out.println("-------将JSON字符串转化为字符串数组-------");
String[] weekdays = gson.fromJson(daysJson, String[].class);
for(int i=0; i<weekdays.length; i++) {
if (i == weekdays.length - 1) {
System.out.print(weekdays[i]);
} else {
System.out.print(weekdays[i] + ",");
}
} System.out.println("");
System.out.println("-------将多维int数组转化为Json-------");
int[][] data = {{1, 2, 3}, {3, 4, 5}, {4, 5, 6}};
String json = gson.toJson(data);
System.out.println("Data = " + json); System.out.println("-------将JSON字符串组转化为多维int数组-------");
int[][] dataMap = gson.fromJson(json, int[][].class);
for (int i = 0; i < data.length; i++) {
for (int j = 0; j < data[i].length; j++) {
System.out.print(data[i][j] + " ");
}
System.out.println("");
}
} }

程序运行结果,如下:

6. 使用Stream打印数组 ,我们可以将数组转换成流并打印出来。

代码示例:

package com.himi.printarray;

import java.util.Arrays;

/*
* 使用Stream打印数组
* 我们可以将其转换成流并打印出来。
*/ public class StreamArray {
public static void main(String[] args) { // array
String[] arrayStr = new String[]{"Java", "Node", "Python", "Ruby"};
Arrays.stream(arrayStr).forEach(System.out::println); int[] arrayInt = {1, 3, 5, 7, 9};
Arrays.stream(arrayInt).forEach(System.out::println); //2d array
String[][] deepArrayStr = new String[][]{ {"yiibai1", "yiibai2"}, {"yiibai3", "yiibai4"} };
Arrays.stream(deepArrayStr).flatMap(x -> Arrays.stream(x)).forEach(System.out::println); int[][] deepArrayInt = new int[][]{{1, 3, 5, 7, 9}, {2, 4, 6, 8, 10}};
Arrays.stream(deepArrayInt).flatMapToInt(x -> Arrays.stream(x)).forEach(System.out::println);
} }

程序运行结果,如下:

Java基础知识强化105:打印数组的方法总结的更多相关文章

  1. Java基础知识强化之集合框架笔记76:ConcurrentHashMap之 ConcurrentHashMap简介

    1. ConcurrentHashMap简介: ConcurrentHashMap是一个线程安全的Hash Table,它的主要功能是提供了一组和Hashtable功能相同但是线程安全的方法.Conc ...

  2. Java基础知识强化之多线程笔记01:多线程基础知识(详见Android(java)笔记61~76)

    1. 基础知识: Android(java)学习笔记61:多线程程序的引入    ~    Android(java)学习笔记76:多线程-定时器概述和使用 

  3. Java基础知识强化之IO流笔记40:字符流缓冲流之特殊功能 [ newLine() / readLine() ]

    1. 字符缓冲流的特殊方法 BufferedWriter: public void newLine():根据系统来决定换行符 BufferedReader: public String readLin ...

  4. Java基础知识强化之集合框架笔记53:Map集合之Map集合的遍历 键值对对象找键和值

    1. Map集合的遍历(键值对对象找键和值) Map -- 夫妻对  思路:  A: 获取所有结婚证的集合  B: 遍历结婚证的集合,得到每一个结婚证  C: 根据结婚证获取丈夫和妻子 转换:  A: ...

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

    1.最容易想到的估计就是利用String类的toCharArray(),再倒序输出数组的方法了: package himi.hebao05; public class TestDemo02 { pub ...

  6. Java基础知识强化81:Math类random()方法之获取任意范围的随机数案例(面试题)

    1. 需求:设计一个方法,可以实现获取任意范围内的随机数 分析:使用方法random()如下: public static double random() 注:Returns a pseudo-ran ...

  7. Java基础知识强化之集合框架笔记01:集合的由来与数组的区别

    1. 集合的由来: 我们学习的是面向对象语言,而面向对象语言对事物的描述是通过对象体现的,为了方便对多个对象进行操作,我们就必须把这多个对象进行存储.而要想存储多个对象,就不能是一个基本的变量,而应该 ...

  8. Java基础知识强化之IO流笔记60:打印流 之 改进复制文本文件的案例

    1. 使用打印流改进复制文本文件的案例 2. 代码示例: package cn.itcast_03; import java.io.BufferedReader; import java.io.Buf ...

  9. Java基础知识强化之IO流笔记59:打印流

    1. 打印流 (1)分类: • 字节打印流   PrintStream • 字符打印流   PrintWriter (2)打印流的特点: • 只能写数据,不能读数据 • 只能操作目的地,不能操作数据源 ...

随机推荐

  1. ext 参考资料

    http://extjs.org.cn/ 中文网站 http://www.sencha.com/ 英文网站 http://www.qeefee.com 个人总结

  2. c# spring aop的简单例子

    刚刚完成了一个c#的spring aop简单例子,是在mac下用Xamarin Studio开发的.代码如下: 接口 using System; using System.Collections.Ge ...

  3. spring mvc为何多注入了个SimpleUrlHandlerMapping?

    最近在调试项目时,debug DispatcherServlet时,发现handlerMappings属性包含了RequestMappingHandlerMapping.SimpleUrlHandle ...

  4. MyEclipse中无法将SVN检出来的项目部署到tomcat中

    自己遇到的小问题  : 要以web项目方式从svn上倒下来才可以部署到tomcat下检出步骤: myEclipse -->File-->new-->other-->svn--& ...

  5. android打电话、发短信实现

    打电话: Intent intent = newIntent(Intent.ACTION_CALL,Uri.parse("tel:"+"156666666666" ...

  6. 本地存储(cookie&sessionStorage&localStorage)

    好文章,最全面.就查它吧:https://segmentfault.com/a/1190000004556040 1.DOM存储:https://developer.mozilla.org/zh-CN ...

  7. Android中GridView的实现实例

    实现效果: activity文件代码: package com.tmacsky; import android.app.Activity; import android.os.Bundle; impo ...

  8. IOS开发之路四(UITabBarController)

    前两天看了看斯坦福大学的iphone开发公开课,讲的倒是不错,可看的我云里雾里的,不怎么讲基础和原理,不太适合初学者.今天看了一上午ios5基础教程这本书感觉有点头绪了....废话少说,讲一讲我上午做 ...

  9. Animated Scroll to Top

    Due to a number of requests, I'm writing a detail tutorial on how to create an animated scroll to to ...

  10. SCCM2012分发脚本

    1.分发批处理脚本 命令行:script.bat 2.分发PowerShell脚本 命令行:PowerShell.exe -executionpolicy unrestricted -file .\s ...