Предположим, что ваш текстовый файл содержит информацию об имени клиента и его адресе.Таким образом, мы сохраняем этот файл как customer.txt на вашем жестком диске.
Далее вам нужно создать пакет с именем "com.customer.table.model" в папке вашего проекта.Создайте новый класс Java-бина с именем «Customer.java» в этом пакете.Скопируйте приведенный ниже код и включите его в класс Customer.
package com.customer.table.model;
/**
*
* @author sarath_sivan
*/
public class Customer {
private String name;
private String email;
private String gender;
private String location;
public Customer() {}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
}
Далее необходимо создать еще один пакет в каталоге вашего проекта.Дайте имя пакета "com.customer.table.service" для нового.Затем создайте Java-класс с именем «FileReader» и включите в него приведенный ниже код.
package com.customer.table.service;
import com.customer.table.model.Customer;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author sarath_sivan
*/
public class FileReader {
public static List<Customer> readFile(String fileName) throws FileNotFoundException, IOException { // reading each line from the customer.txt file, formatting it and returning a as a list for displaying in in our jsp page.
FileInputStream fileInputStream = new FileInputStream(fileName);
DataInputStream dataInputStream = new DataInputStream(fileInputStream);
InputStreamReader inputStreamReader = new InputStreamReader(dataInputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
List<Customer> customerList = new ArrayList<Customer>(); String readLine;
while((readLine=bufferedReader.readLine())!=null) {
System.out.println(readLine);
customerList.add(formatReadLine(readLine));
}
dataInputStream.close();
return customerList;
}
public static Customer formatReadLine(String readLine) {
String[] splits = split(readLine);
Customer customer = new Customer();
customer.setName(getTableDataFormat(splits[0]));
customer.setEmail(getTableDataFormat(splits[1]));
customer.setGender(getTableDataFormat(splits[2]));
customer.setLocation(getTableDataFormat(splits[3]));
return customer;
}
public static String[] split(String readLine) { // splitting each line from the customer.txt file with "," as the delimiter
return readLine.split(",");
}
public static String getTableDataFormat(String splits) { // Method for appending <td> tags with the formatted data
StringBuilder tableData = new StringBuilder();
tableData.append("<td>");
tableData.append(splits);
tableData.append("</td>");
return tableData.toString();
}
}
После того, как оба вышеуказанных файла класса созданы, мы можем перейти на страницу jsp, которую вы хотели бы отобразитькаждый элемент извлекается из текстового файла запятой.Теперь создайте новую страницу jsp, скажем index.jsp, в папке вашего основного веб-проекта.Скопируйте и вставьте в него приведенный ниже код.
<%--
Document : index
Created on : 29 Feb, 2012, 11:30:04 PM
Author : sarath_sivan
--%>
<%@page import="com.customer.table.service.FileReader"%>
<%@page import="com.customer.table.model.Customer"%>
<%@page import="java.util.List"%>
<%@page import="java.util.ArrayList"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Customer Information</h1>
<table border="1" align="left">
<tr>
<th>Name</th>
<th>Email</th>
<th>Gender</th>
<th>Location</th>
</tr>
<% try {
List<Customer> customerList = new ArrayList<Customer>();
String fileName = "C:/Users/compaq/Desktop/customers.txt";
customerList = FileReader.readFile(fileName);
for(Customer customer : customerList) {
out.println("<tr>");
out.println(customer.getName()+customer.getEmail()+customer.getGender()+customer.getLocation());
out.println("</tr>");
}
} catch(Exception e) {
e.printStackTrace();
}
%>
</table>
</body>
</html>
Теперь он готов к развертыванию.Вы можете запустить свой проект на любом сервере.Вы можете увидеть все данные, включенные в файл customer.txt в вашем index.jsp, в виде таблицы, как показано ниже.Точно так же вы можете добавить больше деталей, изменив приведенный выше код в соответствии с вашими требованиями.
Customer Information
Name Email Gender Location
joe joe@g.com male male
fred fred@g.com male male
Надеюсь, это спасет вашу цель ....!
Спасибо вам ..!