เขียน jsp ดึงข้อมูลจาก Object .java ต้องทำอย่างไรแนะนำทีน่ะครับ
กำหนดให้ดึงข้อมูลในไฟล์ test.java โดยที่ข้อมูลมีลักษณะดังนี้
Code (Java)
package com.testwork;
public class test {
public static String[][] getStringArray(){
String output[][] = new String[14][2];
output[0][0] = "January";
output[1][0] = "February";
output[2][0] = "March";
output[3][0] = "April";
output[4][0] = "May";
output[5][0] = "June";
output[6][0] = "July";
output[7][0] = "August";
output[8][0] = "September";
output[9][0] = "October";
output[10][0] = "November";
output[11][0] = "December";
output[0][1] = "10,000";
output[1][1] = "20,000";
output[2][1] = "30,000";
output[3][1] = "40,000";
output[4][1] = "50,000";
output[5][1] = "60,000";
output[6][1] = "70,000";
output[7][1] = "80,000";
output[8][1] = "90,000";
output[9][1] = "100,000";
output[10][1] = "120,000";
output[11][1] = "200,000";
return output;
}
}
และให้นำข้อมูลที่ได้แสดงผลผ่านหน้าเว็บ jsp
เป็นตารางแสดงผลดังนี้
Code
Month Money
January 10,000
Febuary 20,000
March 30,000
April 40,000
May 50,000
June 60,000
July 70,000
August 80,000
September 90,000
October 100,000
November 120,000
December 200,000
ขอบคุณทุกๆความช่วยเหลือครับTag : JAVA, JSP
Date :
2015-05-19 15:44:30
By :
ponkung
View :
1591
Reply :
9
ขั้นแรกจะต้อง Import มันขึ้นมาก่อนครับ ตัวอย่างนี้มีคำแนะนำให้ครับ
Code (Java)
<%@ page import="com.java.myapp.MyProfile" %>
Code (Java)
<%--
Document : index
Created on : Aug 12, 2013, 10:50:40 AM
Author : WEERACHAI
--%>
<%@ page import="com.java.myapp.MyProfile" %>
<%@ page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ThaiCreate.Com JSP Tutorial</title>
</head>
<body>
<% MyProfile profile = new MyProfile();
out.print(profile.displayName());
out.print("<br>");
out.print(profile.displayFullname());
%>
</body>
</html>
JSP and Netbeans Create Class java (Netbeans)
Date :
2015-05-19 15:50:34
By :
mr.win
ขอบคุณมากครับในแนวทางที่แนะนำ ผมจะนำไปลองทดสอบดูว่าเป็นอย่างไรบ้าง และจะแจ้งให้ทราบอีกทีว่า ติดตรงส่วนไหนหรือป่าวครับผม
Date :
2015-05-19 15:55:08
By :
ponkung
มีท่านใดแนะนำเพิ่มเติมหรือป่าวครับ
Date :
2015-05-20 12:08:02
By :
ponkung
ซึ่งผมก็ทำการ copy ไฟล์ DataProvider.java ไปไว้ใน tomcat แล้วน่ะ ซึ่งอยู่ใน path เดียวไฟล์ .jsp แล้ว
ผมทำพลาดประการใด แนะนำแนวทางด้วยครับ
Date :
2015-05-20 14:05:39
By :
ponkung
compile DataProvider.java เป็น .class แล้วค่อยนำไปวาง ใน โฟลเดอร์ WEB-INF
Date :
2015-05-20 14:52:40
By :
ipstarone
ตามนั้นครับ จะต้อง compile ให้เป็น .class ก่อน
Date :
2015-05-20 15:08:06
By :
mr.win
ขอบคุณมากครับทุกๆคำแนะนำ ผมสามารถเขียน jsp ตามที่ต้องการแล้วน่ะครับ ขอบคุณอีกครั้งครับ
Date :
2015-05-20 16:49:04
By :
ponkung
Load balance : Server 05