Here you can find the source of intsToStrings(int[] intreps)
public static String[] intsToStrings(int[] intreps)
//package com.java2s; /**//from w w w . j a v a2 s . co m * This file is part of FNLP (formerly FudanNLP). * * FNLP is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FNLP is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU General Public License * along with FudanNLP. If not, see <http://www.gnu.org/licenses/>. * * Copyright 2009-2014 www.fnlp.org. All rights reserved. */ public class Main { public static String[] intsToStrings(int[] intreps) { String[] stringreps = new String[intreps.length]; for (int i = 0; i < intreps.length; i++) stringreps[i] = new Integer(intreps[i]).toString(); return stringreps; } }