码迷,mamicode.com
首页 > 其他好文 > 详细

getChars的用法

时间:2014-07-14 13:29:31      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:getchars的用法

<%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.util.*" %>
<html>
        <!--  getChars()方法的用法:
              getChars()方法可以一次获得字符串中的多个字符。语法格式如下:
              void getChars(int sourceStart,int sourceEnd,int target[],int targetStart);
                            第一个参数sourceStart指出了字符串截取所开始的位置;
                            第二个参数sourceEnd指出了字符串截取所结束的位置;
                            第三个参数指出目标(即接收)字符数组;
                            第四个参数指出目标字符数据接收的开始下标。             
         -->
<body>
    <%
       String s="this is a student.";
       int startPoistion=1;
       int endPoistion=7;
       char pointChars[]=new char[endPoistion-startPoistion];
       s.getChars(startPoistion,endPoistion,pointChars,0);
       out.println(pointChars);
     %>
</body>
</html>

getChars的用法,布布扣,bubuko.com

getChars的用法

标签:getchars的用法

原文地址:http://blog.csdn.net/u012804490/article/details/37742429

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