2. 在 Spring 配置文件中配置拦截器插件
使用 spring 的属性配置方式,可以使用
plugins
属性像下面这样配置:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注意其他配置 -->
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageInterceptor">
<property name="properties">
<!--使用下面的方式配置参数,一行配置一个 -->
<value>
params=value1
</value>
</property>
</bean>
</array>
</property>
</bean>
3. 分页插件参数介绍
分页插件提供了多个可选参数,这些参数使用时,按照上面两种配置方式中的示例配置即可。
分页插件可选参数如下:
dialect
:默认情况下会使用 PageHelper 方式进行分页,如果想要实现自己的分页逻辑,可以实现
Dialect
(
com.github.pagehelper.Dialect
) 接口,然后配置该属性为实现类的全限定名称。
下面几个参数都是针对默认 dialect 情况下的参数。使用自定义 dialect 实现时,下面的参数没有任何作用。
helperDialect
:分页插件会自动检测当前的数据库链接,自动选择合适的分页方式。 你可以配置
helperDialect
属性来指定分页插件使用哪种方言。配置时,可以使用下面的缩写值:
oracle
,
mysql
,
mariadb
,
sqlite
,
hsqldb
,
postgresql
,
db2
,
sqlserver
,
informix
,
h2
,
sqlserver2012
,
derby
特别注意:
使用 SqlServer2012 数据库时,需要手动指定为
sqlserver2012
,否则会使用 SqlServer2005 的方式进行分页。
你也可以实现
AbstractHelperDialect
,然后配置该属性为实现类的全限定名称即可使用自定义的实现方法。
重要提示:
当
offsetAsPageNum=false
的时候,由于
PageNum
问题,
RowBounds
查询的时候
reasonable
会强制为
false
。使用
PageHelper.startPage
方法不受影响。
---------------------Maven项目mysql数据库没有集成Spring的测试---------------
0.目录结构:
1.Exam在mysql表结构
2.Exam.java与ExamExample.java是mybatis逆向工程导出来的:
3.ExamMapper.java是在导出来的基础上加了一个自己写的方法,对应mapper的xml也加了一个自己的实现:
ExamMapper.java自己手动加的一个方法:
* 自己手写的一个根据名字模糊查询考试
* @param name
* @return
List
<
Exam
>
selectAllExamsByName(@Param("name")String name);
ExamMapper.xml自己手动加的一个方法的实现:
<!-- 自己手写的一个根据名字模糊查询考试 exam是扫描出来的别名 -->
<select id="selectAllExamsByName" parameterType="string" resultType="exam">
select * from exam where examName like '%${name}%'
</select>
4.SqlMapConfig.xml配置:(
注意plugins的配置
)
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 加载属性文件 -->
<properties resource="db.properties">
<!--properties中还可以配置一些属性名和属性值 -->
<!-- <property name="jdbc.driver" value=""/> -->
</properties>
<!-- 全局配置参数,需要时再设置 -->
<!-- <settings> </settings> -->
<!-- 别名定义 -->
<typeAliases>
<!-- 针对单个别名定义 type:类型的路径 alias:别名 -->
<!-- <typeAlias type="cn.itcast.mybatis.po.User" alias="user"/> -->
<!-- 批量别名定义 指定包名,mybatis自动扫描包中的po类,自动定义别名,别名就是类名(首字母大写或小写都可以) -->
<package name="cn.xm.exam.bean.exam" />
</typeAliases>
<plugins>
<!-- com.github.pagehelper为PageHelper类所在包名 -->
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- 使用下面的方式配置参数,后面会有所有的参数介绍 -->
<property name="dialect" value="mysql"/>
</plugin>
</plugins>
<!-- 和spring整合后 environments配置将废除 -->
<environments default="development">
<environment id="development">
<!-- 使用jdbc事务管理,事务控制由mybatis -->
<transactionManager type="JDBC" />
<!-- 数据库连接池,由mybatis管理 -->
<dataSource type="POOLED">
<property name="driver" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</dataSource>
</environment>
</environments>
<!-- 加载 映射文件 -->
<mappers>
<!-- 批量加载mapper 指定mapper接口的包名,mybatis自动扫描包下边所有mapper接口进行加载 遵循一些规范:需要将mapper接口类名和mapper.xml映射文件名称保持一致,且在一个目录
中 上边规范的前提是:使用的是mapper代理方法 -->
<package name="cn.xm.exam.mapper" />
</mappers>
</configuration>
4.pom.xml配置以及项目中的jar包:
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.qlq</groupId>
<artifactId>MybatisPagerHelper</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<!-- 配置了很多插件 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<!-- pageHelper -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.0</version>
</dependency>
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.7</version>
</dependency>
<!-- mysql连接驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.37</version>
</dependency>
</dependencies>
</project>
最终的jar包:
6.测试代码:
package cn.xm.exam.daoTest;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
import javax.print.Doc;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Before;
import org.junit.Test;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import cn.xm.exam.bean.exam.Exam;
import cn.xm.exam.bean.exam.ExamExample;
import cn.xm.exam.mapper.exam.ExamMapper;
public class PageHelperTest {
private SqlSessionFactory sqlSessionFactory;
@Before
public void setUp() throws IOException {
String resource = "SqlMapConfig.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
@Test
public void test1() {
SqlSession sqlSession = sqlSessionFactory.openSession();
//创建ExamMapper对象
ExamMapper examMapper = sqlSession.getMapper(ExamMapper.class);
ExamExample examExample = new ExamExample();
ExamExample.Criteria criteria = examExample.createCriteria();
//只对紧邻的下一条select语句进行分页查询,对之后的select不起作用
PageHelper.startPage(1,8);
//上面pagehelper的设置对此查询有效,查到数据总共8条
List<Exam> exams = examMapper.selectByExample(examExample);
PageInfo<Exam> pageInfo = new PageInfo<>(exams);
System.out.println("第一次查询的exams的大小:"+exams.size());
for(Exam e:pageInfo.getList()){
System.out.println(e);
System.out.println("分页工具类中数据量"+pageInfo.getList().size());
System.out.println();
System.out.println("---------------华丽的分割线------------");
System.out.println();
//第二次进行查询:上面pagehelper的设置对此查询无效(查询所有的数据86条)
List<Exam> exams2 = examMapper.selectByExample(examExample);
//总共86条
System.out.println("第二次查询的exams2的大小"+exams2.size());
* 测试自己写的根据名称模糊查询考试
@Test
public void test2() {
SqlSession sqlSession = sqlSessionFactory.openSession();
//创建examMapper对象
ExamMapper examMapper = sqlSession.getMapper(ExamMapper.class);
//只对紧邻的下一条select语句进行分页查询,对之后的select不起作用
PageHelper.startPage(1,6);
//上面pagehelper的设置对此查询有效,查到数据,总共6条
List<Exam> exams = examMapper.selectAllExamsByName("厂级");
PageInfo<Exam> pageInfo = new PageInfo<>(exams);
System.out.println("第一次查询的exams的大小(受pageHelper影响):"+exams.size());
for(Exam e:pageInfo.getList()){
System.out.println(e);
System.out.println("分页工具类中数据量"+pageInfo.getList().size());
System.out.println();
System.out.println("---------------华丽的分割线------------");
System.out.println();
//第二次进行查询:上面pagehelper的设置对此查询无效(查询所有的数据34条)
List<Exam> exams2 = examMapper.selectAllExamsByName("厂级");
System.out.println("第二次查询的exams2的大小(不受pageHelper影响)"+exams2.size());
运行结果:
test1:
test2:
使用也简单,大致就是导包,两个包(pagehelper和jsqlparser),然后在配置文件中引入插件,最后在代码中使用,使用方法可以简化成如下:
//只对紧邻的下一条select语句进行分页查询,对之后的select不起作用
PageHelper.startPage(1,6);
//上面pagehelper的设置对此查询有效,查到数据,总共6条
List<Exam> exams = examMapper.selectAllExamsByName("厂级");
PageInfo<Exam> pageInfo = new PageInfo<>(exams);
exams就是分页查出的数据,最后将数据存入pageInfo的list中,pageInfo中就是分页的全部信息,可以直接返回到页面进行显示。
---------------------Maven项目mysql数据库集成Spring的测试---------------
0.添加spring 的包
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.qlq</groupId>
<artifactId>MybatisPagerHelper</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<!-- 配置了很多插件 -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
<!-- pageHelper -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.2</version>
</dependency>
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.7</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.2.1</version>
</dependency>
<!-- mysql连接驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.37</version>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
<!-- DBCP连接池 -->
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
</dependencies>
<!-- spring -->
</project>
1.修改mybatis主配置文件:
SqlMapConfig2.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 设置别名 -->
<typeAliases>
<!-- 2. 指定扫描包,会把包内所有的类都设置别名,别名的名称就是类名,大小写不敏感 -->
<package name="cn.xm.exam.bean.exam" />
</typeAliases>
</configuration>
2.增加spring配置文件
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
<context:property-placeholder location="classpath:db.properties" />
<!-- 数据库连接池 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="maxActive" value="10" />
<property name="maxIdle" value="5" />
</bean>
<!-- Mybatis的工厂 -->
<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<!-- 核心配置文件的位置 -->
<property name="configLocation" value="classpath:SqlMapConfig2.xml" />
<!-- 注意其他配置 -->
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageInterceptor">
<property name="properties">
<!--使用下面的方式配置参数,一行配置一个 -->
<value>
helperDialect=mysql
reasonable=true
</value>
</property>
</bean>
</array>
</property>
</bean>
<!-- Mapper动态代理开发 扫描 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 基本包 -->
<property name="basePackage" value="cn.xm.exam.mapper" />
</bean>
</beans>
注意上面黄色背景的配置:(用helperDialect=mysql,用dialect=mysql会报错)
3.最终配置文件结构:
4.spring-junit测试;
package cn.xm.exam.daoTest;
import java.util.List;
import javax.annotation.Resource;
import org.apache.ibatis.session.SqlSession;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import cn.xm.exam.bean.exam.Exam;
import cn.xm.exam.bean.exam.ExamExample;
import cn.xm.exam.mapper.exam.ExamMapper;
* 与spring集成的mybatis的分页插件pagehelper的测试
* @author liqiang
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class PageHelperTestWithSpring {
@Resource
private ExamMapper examMapper;
@Test
public void test1() {
//创建ExamMapper对象
ExamExample examExample = new ExamExample();
ExamExample.Criteria criteria = examExample.createCriteria();
//只对紧邻的下一条select语句进行分页查询,对之后的select不起作用
PageHelper.startPage(1,8);
//上面pagehelper的设置对此查询有效,查到数据总共8条
List<Exam> exams = examMapper.selectByExample(examExample);
PageInfo<Exam> pageInfo = new PageInfo<>(exams);
System.out.println("第一次查询的exams的大小:"+exams.size());
for(Exam e:pageInfo.getList()){
System.out.println(e);
System.out.println("分页工具类中数据量"+pageInfo.getList().size());
System.out.println();
System.out.println("---------------华丽的分割线------------");
System.out.println();
//第二次进行查询:上面pagehelper的设置对此查询无效(查询所有的数据86条)
List<Exam> exams2 = examMapper.selectByExample(examExample);
//总共86条
System.out.println("第二次查询的exams2的大小"+exams2.size());
@Test
public void test2() {
//创建ExamMapper对象
ExamExample examExample = new ExamExample();
ExamExample.Criteria criteria = examExample.createCriteria();
//只对紧邻的下一条select语句进行分页查询,对之后的select不起作用
PageHelper.startPage(1,8);
//上面pagehelper的设置对此查询有效,查到数据总共8条
List<Exam> exams = examMapper.selectAllExamsByName("厂级");
PageInfo<Exam> pageInfo = new PageInfo<>(exams);
System.out.println("第一次查询的exams的大小:"+exams.size());
for(Exam e:pageInfo.getList()){
System.out.println(e);
System.out.println("分页工具类中数据量"+pageInfo.getList().size());
System.out.println();
System.out.println("---------------华丽的分割线------------");
System.out.println();
//第二次进行查询:上面pagehelper的设置对此查询无效(查询所有的数据86条)
List<Exam> exams2 = examMapper.selectAllExamsByName("厂级");
//总共86条
System.out.println("第二次查询的exams2的大小"+exams2.size());
test1:
public interface TraincontentCustomMapper {
List<Map<String,Object>> selectTraincontentWithFYCondition(Map map);
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="cn.xm.exam.mapper.trainContent.custom.TraincontentCustomMapper">
<!-- lixianyuan 9/19 start -->
<!-- 分页查询:根据组合条件进行分页查询 -->
<select id="selectTraincontentWithFYCondition" parameterType="map"
resultType="map">
select documentid,departmentid,documentname,traintype,departmentname,knowledgetype,originalname,currentname,
uptime,size,employeename,level,description,browsetimes,typeid,typename
from traincontent,traincontenttype
<where>
<if test="1 == 1">
and traincontent.knowledgeType = traincontenttype.typeid
<if test="documentName!=null && documentName!=''">
and documentName like
concat(concat('%',#{documentName}),'%')
<if test="departmentName!=null && departmentName!='' ">
and departmentName like concat(concat('%',#{departmentName}),'%')
<if test="typeId != null">
and knowledgeType = #{typeId}
</where>
order by upTime desc
</select>
</mapper>
@Override
public List<Map<String,Object>> selectTraincontentWithFYCondition(Map map) throws Exception {
List<Map<String,Object>> trainContentList = traincontentCustomMapper.selectTraincontentWithFYCondition(map);
if (trainContentList!=null) {
return trainContentList;
} else {
return null;
private String documentName;//文档名称
private String departmentName;//部门名称
private String typeId;//类别编号
* 根据资料名称、所属部门、资料级别、知识点、当前页页号、每页显示记录数进行分页查询
* @return
* @throws Exception
public String findTrainByFYCondiction() throws Exception {
map = new LinkedHashMap<String, Object>();
// 封装查询条件
Map<String,Object> condition = new HashMap<String,Object>();//封装条件的map
if(ValidateCheck.isNotNull(documentName)){
condition.put("documentName", documentName);
if(ValidateCheck.isNotNull(departmentName)){
condition.put("departmentName", departmentName);
if(ValidateCheck.isNotNull(typeId)){
condition.put("typeId", typeId);
int current_page = Integer.parseInt(currentPage);//当前页
int current_total = Integer.parseInt(currentTotal);//页大小
/******S PageHelper分页*********/
PageHelper.startPage(current_page,current_total);//开始分页
List<Map<String,Object>> traincontentList = traincontentService.selectTraincontentWithFYCondition(condition);
PageInfo<Map<String,Object>> pageInfo = new PageInfo<>(traincontentList);
/******E PageHelper分页*********/
map.put("pageInfo", pageInfo);
return "ok";
// 第三个参数代表排序方式
PageHelper.startPage(1, 3, "id");
List<User> users = userService.findUsersByPage();
response.put("users", users);
return "success";
* @param orderBy 排序
public static <E> Page<E> startPage(int pageNum, int pageSize, String orderBy) {
Page<E> page = startPage(pageNum, pageSize);
page.setOrderBy(orderBy);
return page;
查看日志:
11:25:02,938 DEBUG findUsersByPage:132 - ==> Preparing: SELECT * FROM user order by id LIMIT ?
11:25:02,939 DEBUG findUsersByPage:132 - ==> Parameters: 3(Integer)
11:25:02,941 TRACE findUsersByPage:138 - <== Columns: id, name
11:25:02,941 TRACE findUsersByPage:138 - <== Row: 1, QLQ
11:25:02,943 TRACE findUsersByPage:138 - <== Row: 2, QLQ2
11:25:02,943 TRACE findUsersByPage:138 - <== Row: 3, QLQ3
// 第三个参数代表排序方式
PageHelper.startPage(2, 2, "id desc");
List<User> users = userService.findUsersByPage();
response.put("users", users);
return "success";
查看sql日志:
11:35:36,307 DEBUG findUsersByPage:132 - ==> Preparing: SELECT * FROM user order by id desc LIMIT ?, ?
11:35:36,308 DEBUG findUsersByPage:132 - ==> Parameters: 2(Integer), 2(Integer)
11:35:36,309 TRACE findUsersByPage:138 - <== Columns: id, name
11:35:36,310 TRACE findUsersByPage:138 - <== Row: 3, QLQ3
11:35:36,311 TRACE findUsersByPage:138 - <== Row: 2, QLQ2
javagui字体 java中字体的设置
实在受不了在中文Windows下Java(Swing)程序默认的字体,那叫一个难看。如果你和我一样,那么希望下面的小贴士可以帮到你(以JDK 1.5.0为例):
1- 找到JRE目录,如果你安装的是JDK,那么在JDK的目录下可以找到jre子目录,就是它了;如果你安装的JRE,那么默认应该在Program Files\Java\jre1.5.0_...。
在某些情况下,虽然可以使用单个变量来存储信息,但是如果需要存储的信息较多(例如存储50名学生的成绩),这时再依次创建变量声明并赋值显得非常麻烦。
Java数组简介:数组是什么?
随着处理的信息量越来越大,工作也就越来越烦琐,这时可以使用数组或集合来存储信息。通过使用数组,可以在很大程度上缩短和简化程序代码,从而提高应用程序的效率。
数组(arra