⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test1.java

📁 一个搜索引擎,希望对大家有用
💻 JAVA
字号:
package com.luceneheritrixbook.test;

import java.io.*;

public class Test1 {

	public static void main(String[] args) throws Exception  {
		
		String prefix = "http://pdlib.pconline.com.cn/product/outer.do?method=brand&typeId=";
		
		BufferedReader reader = new BufferedReader(new FileReader("c:\\test.txt"));
		String line = reader.readLine();
		
		while (line != null) {
			
			String id = line.substring(line.indexOf(",")+2, line.lastIndexOf("\""));
			System.out.println(prefix + id);
			
			line = reader.readLine();
		}	
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -