- 浏览: 124412 次
- 性别:
- 来自: 陕西
文章分类
- 全部博客 (90)
- ASP中错误代码解析 (1)
- Javase (32)
- JavaEE (0)
- Hibernate (10)
- Spring (2)
- Struts (1)
- Oracle (3)
- ASP (2)
- JDBC (0)
- JavaEE+Hibernate+Spring+Struts (1)
- MySql (0)
- SQL (6)
- servlet (0)
- JavaScript (4)
- 软件测试 (0)
- 架构分析 (0)
- 面试 (1)
- Flash (0)
- PhotoShop (0)
- 文章 (2)
- Ajax (1)
- JSP (8)
- C# (1)
- PHP (2)
- ASP.NET (0)
- Dreamwerver (0)
- Linux (0)
- 经验技巧 (5)
- C++ (0)
- 每日一个问题总结 (4)
最新评论
-
bb12152205gg:
jsp与servlet的区别
简单 ...
JSP登录验证功能的实现 -
GoodDemo:
JSP登录验证功能的实现 -
leelj:
看看 这里:http://www.iteye.com/topi ...
JAVA每日一题01 -
lpp333:
华为的兄弟吧~~!!
JAVA每日一题01 -
Hooopo:
night_stalker 写道shuffle 犯规呀~~
不 ...
JAVA每日一题01
题目:编写一个程序,使用正则表达式在源文件每一行的开头插入“001”开始的连续符号,以生成一个新的文件。可以使用Java
源文件程序文件的副本作为输入进行测试。
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.CharBuffer; import java.nio.channels.FileChannel; import java.util.regex.Pattern; import java.util.regex.Matcher; public class InsertLineNumbers{ public static void main(String[] args) { // Get the file name and path from the command line if(args.length == 0 ) { System.out.println("No file specified. Usage is:" +"\n\njava RemoveSpaces \"PATH_TO_FILE\"" +"\n\nwhere PATH_TO_FILE is an absolute path to the file whose you want to dump." +"\nYou should use either forward slashes or double backslashes as separators in the path."); System.exit(1); } String filePath = args[0]; // Get the file path File fileIn = new File(filePath); if(!fileIn.isFile()) { // Check that there is a file for the path System.out.println("File "+filePath+" does not exist."); System.exit(1); } FileInputStream inFile = null; // Create the file input stream try { inFile = new FileInputStream(fileIn); } catch(FileNotFoundException e) { e.printStackTrace(System.err); System.exit(1); } FileChannel inChannel = inFile.getChannel(); // File channel for input ByteBuffer inBuffer = ByteBuffer.allocate(512); // Buffer for 512 ASCII characters // The regular expression to match a line - note that we must specify the second // argument here to enable multiple lines to be matched. // The pattern allows for lines terminated by \r\n or just \n. Pattern line = Pattern.compile(".*\\r?\\n",Pattern.MULTILINE); // Create a new file for output File fileOut = createCopyFile(fileIn); FileOutputStream outFile = null; System.out.println("Copy file is: "+fileOut.getName()); // Create the output file stream try { outFile = new FileOutputStream(fileOut); } catch(FileNotFoundException e) { e.printStackTrace(System.err); System.exit(1); } // Note that the output buffer must be larger than the input buffer // to accommodate the extra characters for line numbers FileChannel outChannel = outFile.getChannel(); // Channel for output ByteBuffer outBuffer = ByteBuffer.allocate(700); // Buffer holds 700 ASCII characters Matcher lineMatch = null; // Matcher for a complete line String inStr = null; // Stores the input buffer data as Unicode String numberStr = null; // Stores a line number as a string int offset = 0; // Offset for part of a line at end of inStr byte[] asBytes = null; // Input buffer contents as byte array int lineNumber = 0; // Line number counter try { // Read the file a buffer at a time while(inChannel.read(inBuffer) != -1) { inBuffer.flip(); // Flip the buffer ready to get the data asBytes = new byte[inBuffer.remaining()]; inBuffer.get(asBytes); inStr = new String(asBytes); outBuffer.clear(); // Match complete lines from the buffer data that is now in inStr lineMatch = line.matcher(inStr); while(lineMatch.find()) { // While we match a line numberStr = String.format("%04d ", ++lineNumber); outBuffer.put(numberStr.getBytes()).put(lineMatch.group().getBytes()); offset = lineMatch.end(); // Record where unprocessed data starts } // We are finished with the input buffer contents inBuffer.clear(); // Clear the input buffer ready for next cycle // Put any leftover from instr (any part of a line) back in input buffer inBuffer.put(inStr.substring(offset).getBytes()); // Write the contents of the output buffer to the file outBuffer.flip(); outChannel.write(outBuffer); } // Write any residue left in the input buffer to the output file // - with a line number if(inBuffer.flip().hasRemaining()) { outBuffer.clear(); numberStr = String.format("%04d ", ++lineNumber); outBuffer.put(numberStr.getBytes()).put(inBuffer).flip(); outChannel.write(outBuffer); } System.out.println("\nEOF reached on input."); inFile.close(); // Close the stream and the channel outFile.close(); } catch(IOException e) { e.printStackTrace(System.err); System.exit(1); } } // Method to create a unique backup File object // This appends _copy1 or _copy2, etc. to the input file name. // The integer part is incremented until we get a name that does not already exist. // This method will not work if you try to create more than 2,147,483,647 copies of the same file. public static File createCopyFile(File aFile) { aFile = aFile.getAbsoluteFile(); // Ensure we have an absolute path File parentDir = new File(aFile.getParent()); // Get the parent directory String name = aFile.getName(); // Get the file name int period = name.indexOf('.'); // Find the extension separator if(period == -1) { // If there isn't one period = name.length(); // set it to the end of the string } // Create a File object that is unique by appending _copyn where n is an integer int copyNumber = 0; // Copy number String nameAdd = null; // String to be appended File copy = null; do { nameAdd = "_copy"+Integer.toString(++copyNumber); // String to be appended copy = new File(name.substring(0,period) + nameAdd + name.substring(period)); } while(copy.exists()); // If the name already exists, go again return copy; } }
发表评论
-
JAVA每日一题25
2009-05-06 17:57 1065这段时间太忙了,咋们继续。题目:修改避免覆盖文件的程 ... -
JAVA每日一题24
2009-04-20 15:59 1229最近比较忙,没有很好的做,不好意思各位。 ... -
JAVA每日一题23
2009-04-11 17:34 1073题目:这是一道C语言题,809*??=800*??+9 ... -
JAVA每日一题22
2009-04-09 18:51 1095题目:有两各线程accountant和cashier ... -
JAVA每日一题21
2009-04-08 18:16 1049题目: 在一个文本框中输入网址,然后点击确定按钮读取服 ... -
JAVA每日一题20
2009-04-07 16:46 1077题目: 简单做一个B/S结构的商业应用——购物车。JS ... -
JAVA每日一题19
2009-04-06 17:32 1525题目:编写一个不同界面的风格的显示。 import ... -
JAVA每日一题18
2009-04-05 16:25 1154题目:在很多操作系统中,文件名长度都有限制,所以在文件 ... -
JAVA每日一题17
2009-04-03 07:25 1756题目:使用JAVA编写扫描网站信的代码,呵呵! imp ... -
JAVA每日一题16
2009-04-02 16:51 1289题目:用JAVA做一个控制访问权限的例子。 ... -
JAVA每日一题15
2009-03-31 07:32 1964题目:用JAVA编写扫描网站信息的代码(流的使用和网络的 ... -
JAVA每日一题14
2009-03-30 19:30 1202题目:用JAVA编写一个压缩文件的例子。 packa ... -
JAVA每日一题12
2009-03-25 07:24 1488题目:做一个简单的收发电子邮件的代码。还需各位指教! ... -
JAVA每日一题11
2009-03-23 13:20 1028题目:使用进度条的一个例子。图片自己找一个几个啊! ... -
JAVA每日一题10
2009-03-22 14:03 1101题目:用JAVA做一个数字签名的例子。 packa ... -
JAVA每日一题09
2009-03-21 07:40 979题目:今天实现C/S多线程的一个简单例子。 / ... -
JAVA每日一题08
2009-03-20 07:31 1088今天的题目更有意思啊!好多人会感兴趣的。呵呵! 题目 ... -
JAVA每日一题06
2009-03-18 07:24 2745这个题目感觉有意思,大家分享一下哦. 题目:编写程序利用 ... -
JAVA每日一题05
2009-03-17 07:58 1113题目:定义接口OneToN,在接口中定义方法jisuan(in ... -
Java小技巧:关于Cookie的操作
2009-03-16 14:04 1423测试环境:JDK1.5、Tomcat5.5 1.设置Co ...
相关推荐
【标题】"JAVA每日一题20"是一个关于Java编程的挑战题目,旨在提升开发者对Java语言的理解和应用能力。通常这类题目会涉及到Java的核心概念、语法特性或者常见问题的解决策略。 【描述】虽然描述部分为空,但根据...
Java每日一题20160906,每日一道Java编程题,提高自己
【标题】"JAVA每日一题11"是一个关于Java编程的日常练习问题,可能是从某个技术社区或博客中提取的。通常,这类题目旨在帮助开发者巩固基础,提升技能,或者探讨一些特定的Java编程概念。从提供的信息来看,我们无法...
NULL 博文链接:https://jythoner.iteye.com/blog/344407
标题“JAVA每日一题08”暗示我们今天将探讨与Java编程语言相关的技术问题,可能是某个挑战或难题的解决方案。由于没有提供具体的题目内容,我们可以从更广泛的Java知识角度出发,结合“源码”和“工具”这两个标签来...
根据给定的信息,我们可以归纳出以下几个关键的Java知识点: ### 1. 在屏幕上输出文本 ...这些练习题覆盖了Java语言的基础语法、控制结构以及面向对象编程的基本概念,非常适合初学者进行日常练习。
【标题】:“每日一题20190628_java面试题_”是指一个针对Java程序员的面试问题集合,可能包含各种Java编程语言、框架、设计模式以及系统架构等相关问题,旨在帮助求职者准备面试。 【描述】:“java面试题,参考...
Java面试题-每日一题:String、StringBuffer、StringBuilder的区别
在给定的编程题中,我们需要判断一个字符串是否为回文串。回文串是指正读反读都一样的字符串,例如"madam"或"level"。Java中,我们可以利用String类提供的方法来实现回文串的判断。解题思路是使用两个指针,一个从...
题目中给出了一个类A及其成员变量和方法的定义,询问了哪些调用是错误的,这涉及到对Java成员访问规则的理解。 以上知识点涵盖了Java多线程、序列化、面向对象设计、变量存储、类型转换、运算符优先级、方法存储、...
"Java方向每日一题day17_11月24日编程题答案1" 在本题中,我们需要解决一个火车进站的问题,给定n辆火车的编号,要求计算出所有可能的出站顺序。该问题可以使用栈来解决,因为栈的出栈顺序满足后进先出(Last In ...
在题目中,有几道关于Java语言特性和语法的单选题: 1. 类实例化语句的正确选项是D。 2. 描述错误的Java语言特点选项是C,因为Java是面向对象的语言,而非面向过程。 3. 编译并运行给定的代码`public class Pvf{ ...
本项目为LeetCode每日一题的Java编程语言解答源码,总计包含223个文件,包括202个Java源文件、7个Markdown文件、6个JSON文件、4个JAR包文件以及少量其他类型文件。这些源码旨在帮助开发者通过实践解决LeetCode上的...
【Java编程题解析】 在Java编程中,我们经常会遇到各种挑战性的题目,旨在提升我们的编程能力和算法思维。这里有两个不同的编程题目,让我们一一解析。 ### 题目1:DNA序列链接 - 找到GC比例最大的子串 #### 题目...
Java是一种面向对象的编程语言,其核心特性之一就是封装,这是OOP(面向对象编程)的三大特性之一,另外两个是继承和多态。封装的主要目的是保护数据的安全性,通过限制对类内部成员的直接访问,防止外部代码随意...
整理互联网常见面试题,为春招、校招和社招做准备。如若不能下载,关注公众号“每日技术分享”,可免费下载资源。
干货资源推荐: JVM干货调试视频教程分享 50份优秀Java求职者简历 SpringCloud前后端分离实战项目...本资源整理自互联网,仅供学习交流使用,请勿商用,坚持每日分享一套Java学习资源干货,一起提高,一起进步!!!
LeetCode的每日一题是平台上的一个特色功能,每天会发布一个新的编程题目,涵盖各种难度级别,从基础到进阶,涉及语言包括Java、Python、C++等。这些题目涵盖了数据结构(如数组、链表、栈、队列、树、图等)和算法...
推出了每日一题活动。借此打卡! ID Difficulty Solution Series Finish Time Java C C++ Address 1 ☆ 2019-02-29 ✓ 225 ☆ 每日一题 2020-03-01 ✓ 206 ☆ 每日一题 2020-03-02 ✓ 面试题 ☆ 每日一题 2020-03-03...
【Java面试题大全-图形图像篇】 在Java面试中,图形图像处理是一个常见的技术领域,涉及到Java AWT(Abstract Window Toolkit)和Swing组件库,以及更高级的JavaFX。这些框架提供了创建用户界面和图形内容的能力。...