随笔分类 -  JAVA

摘要:导入neuroph-core-2.93.jar neuroph-imgrec-2.93.jar neuroph-ocr-2.93.jar及slf4j 阅读全文
posted @ 2017-06-29 22:03 cnlixl 阅读(510) 评论(0) 推荐(0)
摘要://递归实现获取对应目录下的子目录及文件 1 package com.lixl.test; 2 3 import java.io.*; 4 5 public class FileList { 6 7 public static void main(String[] args){ 8 9 File f = new File("D:/eclipse");10 int level = 0;11 12 System.out.println(f.getName());13 level+... 阅读全文
posted @ 2012-08-02 22:57 cnlixl 阅读(280) 评论(0) 推荐(0)
摘要:基础的java练习,数3退1,数组方式的实现。 1 public class Count3Quit { 2 3 public static void main(String[] args){ 4 5 boolean[] arr = new boolean[500]; 6 int leftCount = arr.length; 7 int count = 0; 8 int index = 0; 9 10 for(int i = 0;i < arr.length;i++){1... 阅读全文
posted @ 2012-07-31 22:37 cnlixl 阅读(234) 评论(0) 推荐(0)