- 浏览: 224742 次
- 性别:
- 来自: 北京
最新评论
-
lzj0470:
这种方式,带来的问题很大。如:返回一个对象,然后再调用一些办法 ...
自定义classloader加密java程序 -
bushkarl:
JavaScript 胸罩尺寸计算器 -
bushkarl:
...
Ubuntu php 环境配置 -
dearsunkey:
hao !
Ubuntu php 环境配置 -
qskm:
这个怎么用呢?楼主没说清楚啊,
1、 加密的话该怎么加密?直接 ...
自定义classloader加密java程序
数据库课的实习报告,发来纪念一下这个快要结束的学期,这些日子很累,也很难受,但总算熬过来了。
目录
1.实习题目 2
2.实习环境 2
3.实习过程 2
3.1.数据库设计 2
3.2.采集数据 2
3.2.1.分析数据 2
3.2.2.处理数据 2
3.2.2.1.生成站点表(stop) 2
3.2.2.2.生成线路表(line) 2
3.2.2.3.生成站点-线路表(bus) 2
3.2.2.导入数据 2
3.3.查询方案 2
3.3.1.线路查询 2
3.3.2.过站查询 2
3.3.3.直达乘车查询 2
3.3.4.一次换乘查询 2
3.3.5.两次换乘 2
3.3.查询优化 2
3.4.系统设计 2
3.4.1.系统架构 2
3.4.2.核心代码 2
3.5.系统使用 2
3.5.1.过站查询 2
3.5.2.线路查询 2
3.5.3.乘车查询 2
数据库实习报告
鲁超 10717218
(其他组员:A0717081 杜海星,A0717048 毕超,A0717096 高伟智,10717084 陈文静)
1.实习题目:
公交路线查询网站:提供如下功能:
1. 给定线路的沿途到站情况。
2. 经过某个给定站点的所有线路。
3. 给定起止站点,给出可达的换乘线路,包括换乘次数最少,总乘坐站数最少的选择。
2.实习环境:
硬件环境:Intel Centrino Duo T5450,1024M内存,160G硬盘
软件环境:Windows xp sp2,Mysql 5.0.27-community-nt
3.实习过程:
3.1.数据库设计:
设计三个关系:
线路(线路ID,线路名字)
站(站ID,站名)
线路_站(线路ID,站ID,序号)
ER图如下:
(附件)
SQL语句:
建立stop表:
DROP TABLE IF EXISTS `stop`;
CREATE TABLE `stop` (
`stopid` int(11) NOT NULL,
`stopname` varchar(20) default NULL,
PRIMARY KEY (`stopid`),
KEY `stopname` (`stopname`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
建立line表:
DROP TABLE IF EXISTS `line`;
CREATE TABLE `line` (
`lineid` int(11) NOT NULL,
`linename` varchar(20) default NULL,
PRIMARY KEY (`lineid`),
KEY `linename` (`linename`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
建立bus表:
DROP TABLE IF EXISTS `bus`;
CREATE TABLE `bus` (
`stopid` int(11) default NULL,
`lineid` int(11) default NULL,
`seq` int(11) default NULL,
KEY `bus_stopid` (`stopid`),
KEY `lineid_bus` (`lineid`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
3.2.采集数据:
3.2.1.分析数据:
因为没有可以使用的数据库,所以需要先采集数据,在互联网上可以下载到厦门的公交数据,为xml格式,以下是文件的一个片段:
<?xml version="1.0" encoding="utf-8" ?>
- <gj-root>
- <gj-info roadid="1">
<road-info>厦大,博物馆,大生里,镇海路,中山路,眼科医院,斗西,二市,酿酒厂,文灶,金榜公园,火车站</road-info>
</gj-info>
分析该格式可知:xml版本为1.0,编码为utf-8,根节点为gj-root,每一路公交车的信息存于gj-info中,属性roadid为线路的名字,到站信息以逗号分隔的文本的形式存在road-info中。
3.2.2.处理数据:
采用Java的jdom类库来解析xml文件:
3.2.2.1.生成站点表(stop):
代码如下:
该程序会生成一个stop.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.2.生成线路表(line):
代码如下:
该程序会生成一个line.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.3.生成站点-线路表(bus):
代码如下:
该程序会生成一个bus.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.导入数据:
在DOS命令行使用以下命令导入数据(sql文件存在f:/sql):
mysql –u root –p test<f:\sql\stop.sql
mysql –u root –p test<f:\sql\line.sql
mysql –u root –p test<f:\sql\bus.sql
3.3.查询方案:
3.3.1.线路查询:
线路查询指根据线路名查询该线路通过的所有站:
例如查询线路1通过的所有站,可以通过以下命令查询:
Select * from bus where lineid=1
执行结果如下图所示:
3.3.2.过站查询:
过站查询指通过特定站点的所有线路名称,可以通过以下的命令查询:
Select * from bus where stopid=0;
结果如下图所示:
3.3.3.直达乘车查询:
直达乘车查询指查询两个站点之间的公交车次,可以通过以下语句:
select B.lineid from (select lineid from bus where stopid = 0) A,(select lineid from bus where stopid = 1) B where A.lineid = B.lineid;
结果如下:
3.3.4.一次换乘查询:
当两个站点之间没有直接到达的公交车时,需要寻找第三个站点进行一次换乘,寻找第三个中间站点可以通过以下的sql语句:
select A.stopid from
(
select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 0)
)A,
(
select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 922)
)B
where A.stopid= B.stopid;
结果如下:
然后可以通过直达车次查询查到起始车站到中间车站以及中间车站到目标车站的车次,从而完成一套乘车方案。
3.3.5.两次换乘:
当一次换乘中的中间站点找不到时,就需要进行更多次数的换乘,发生二次换乘时,需要找到两个中间节点,本系统采用的方案是先找到两个中间节点之间的乘车方案(直达),可以使用以下的sql语句:
select A.lineid from
(select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in(select lineid from bus where stopid = 0))) A,
(select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 67))) B
where A.lineid = B.lineid;
然后通过查找从起始车站到以上中间线路中的任意车站的直达车,然后换乘中间线路,然后查找从中间线路上的任意车站到目标线路上的直达车,即可完成一套乘车方案。
3.3.查询优化:
因为当换乘次数增多的时候,此时数据的查询速度增长,所以有必要采用优化措施:
采用建立索引的方式优化:
Create index bus_stopid on bus (stopid)
Create index bus_lineid on bus (lineid)
Create index stop_stopname on stop (stopname)
通过以上的索引,将原来的直达查询由10s缩短到0.2s左右,二次换乘的查询也由原来的两分钟缩短为1s,属于可以接受的范围。
3.4.系统设计:
3.4.1.系统架构:
系统采用基于java的B/S结构,采用mysql作为数据库,glassfish为应用服务器,使用jdbc方式连接数据库,方便对于sql语句调优。
将大多数业务逻辑,比如过站查询,线路查询封装在javabean中,通过jsp直接调用javabean来实现业务,从而降低了jsp和业务逻辑的耦合,提高了可靠性,可重用性。
3.4.2.核心代码:
目录
1.实习题目 2
2.实习环境 2
3.实习过程 2
3.1.数据库设计 2
3.2.采集数据 2
3.2.1.分析数据 2
3.2.2.处理数据 2
3.2.2.1.生成站点表(stop) 2
3.2.2.2.生成线路表(line) 2
3.2.2.3.生成站点-线路表(bus) 2
3.2.2.导入数据 2
3.3.查询方案 2
3.3.1.线路查询 2
3.3.2.过站查询 2
3.3.3.直达乘车查询 2
3.3.4.一次换乘查询 2
3.3.5.两次换乘 2
3.3.查询优化 2
3.4.系统设计 2
3.4.1.系统架构 2
3.4.2.核心代码 2
3.5.系统使用 2
3.5.1.过站查询 2
3.5.2.线路查询 2
3.5.3.乘车查询 2
数据库实习报告
鲁超 10717218
(其他组员:A0717081 杜海星,A0717048 毕超,A0717096 高伟智,10717084 陈文静)
1.实习题目:
公交路线查询网站:提供如下功能:
1. 给定线路的沿途到站情况。
2. 经过某个给定站点的所有线路。
3. 给定起止站点,给出可达的换乘线路,包括换乘次数最少,总乘坐站数最少的选择。
2.实习环境:
硬件环境:Intel Centrino Duo T5450,1024M内存,160G硬盘
软件环境:Windows xp sp2,Mysql 5.0.27-community-nt
3.实习过程:
3.1.数据库设计:
设计三个关系:
线路(线路ID,线路名字)
站(站ID,站名)
线路_站(线路ID,站ID,序号)
ER图如下:
(附件)
SQL语句:
建立stop表:
DROP TABLE IF EXISTS `stop`;
CREATE TABLE `stop` (
`stopid` int(11) NOT NULL,
`stopname` varchar(20) default NULL,
PRIMARY KEY (`stopid`),
KEY `stopname` (`stopname`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
建立line表:
DROP TABLE IF EXISTS `line`;
CREATE TABLE `line` (
`lineid` int(11) NOT NULL,
`linename` varchar(20) default NULL,
PRIMARY KEY (`lineid`),
KEY `linename` (`linename`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
建立bus表:
DROP TABLE IF EXISTS `bus`;
CREATE TABLE `bus` (
`stopid` int(11) default NULL,
`lineid` int(11) default NULL,
`seq` int(11) default NULL,
KEY `bus_stopid` (`stopid`),
KEY `lineid_bus` (`lineid`)
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
3.2.采集数据:
3.2.1.分析数据:
因为没有可以使用的数据库,所以需要先采集数据,在互联网上可以下载到厦门的公交数据,为xml格式,以下是文件的一个片段:
<?xml version="1.0" encoding="utf-8" ?>
- <gj-root>
- <gj-info roadid="1">
<road-info>厦大,博物馆,大生里,镇海路,中山路,眼科医院,斗西,二市,酿酒厂,文灶,金榜公园,火车站</road-info>
</gj-info>
分析该格式可知:xml版本为1.0,编码为utf-8,根节点为gj-root,每一路公交车的信息存于gj-info中,属性roadid为线路的名字,到站信息以逗号分隔的文本的形式存在road-info中。
3.2.2.处理数据:
采用Java的jdom类库来解析xml文件:
3.2.2.1.生成站点表(stop):
代码如下:
package busdataprocess; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.PrintStream; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.jdom.*; import org.jdom.input.SAXBuilder; import org.jr.util.*; public class stops { public static final String LINE_SQL_FILE = "f:/sql/line.sql"; public static final String STOP_SQL_FILE = "f:/sql/stop.sql"; public static final String BUS_SQL_FILE = "f:/sql/bus.sql"; public static void main(String[] args) { PrintStream out = System.out; ArrayList stop = new ArrayList(); //HashSet stop = new HashSet(); SAXBuilder builder = new SAXBuilder(); out.println("OK"); try { Document doc = builder.build(new File("f:/bus.xml")); Element root = doc.getRootElement(); Element curr = null; String[] stops = null; PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(STOP_SQL_FILE)), true); String sql = null; int lineid = 0; List busLine = root.getChildren("gj-info"); Iterator iterator = busLine.iterator(); while (iterator.hasNext()) { curr = (Element) iterator.next(); stops = StringUtil.split(curr.getChildText("road-info")); for (int i = 0; i < stops.length; i++) { if(!stop.contains(stops[i])){ stop.add(stops[i]); out.println("adding "+stops[i]); } } } Iterator it = stop.iterator(); String s = ""; for(int i=0; i<stop.size();i++){ s = (String) it.next();//s is stop name sql = "insert into stop values(" + lineid + ",\'" + s + "\');"; pw.println(sql); lineid++; } pw.flush(); pw.close(); } catch (Exception e) { e.printStackTrace(); } } }
该程序会生成一个stop.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.2.生成线路表(line):
代码如下:
package busdataprocess; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Iterator; import java.util.List; import org.jdom.*; import org.jdom.input.SAXBuilder; import org.jr.util.*; public class line { public static final String LINE_SQL_FILE = "f:/sql/line.sql"; public static final String STOP_SQL_FILE = "f:/sql/stop.sql"; public static final String BUS_SQL_FILE = "f:/sql/bus.sql"; public static void main(String[] args) { PrintStream out = System.out; SAXBuilder builder = new SAXBuilder(); try { Document doc = builder.build(new File("f:/bus.xml")); Element root = doc.getRootElement(); Element curr = null; String[] stops = null; PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(LINE_SQL_FILE)), true); int lineid = 0; String linename = null; List busLine = root.getChildren("gj-info"); Iterator iterator = busLine.iterator(); while (iterator.hasNext()) { curr = (Element) iterator.next(); linename = curr.getAttribute("roadid").getValue(); pw.println("insert into line values(" + lineid + ",\'" + linename + "\');"); lineid++; } pw.flush(); pw.close(); } catch (Exception e) { e.printStackTrace(); } } }
该程序会生成一个line.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.3.生成站点-线路表(bus):
代码如下:
package busdataprocess; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.PrintStream; import java.io.PrintWriter; import java.util.HashMap; import java.util.Iterator; import java.util.List; import org.jdom.*; import org.jdom.input.SAXBuilder; import org.jr.util.*; public class bus { public static final String LINE_SQL_FILE = "f:/sql/line.sql"; public static final String STOP_SQL_FILE = "f:/sql/stop.sql"; public static final String BUS_SQL_FILE = "f:/sql/bus.sql"; public static void main(String[] args) { PrintStream out = System.out; HashMap stop = new HashMap(); HashMap line = new HashMap(); SAXBuilder builder = new SAXBuilder(); try { Document doc = builder.build(new File("f:/bus.xml")); Element root = doc.getRootElement(); Element curr = null; String[] stops = null; PrintWriter pw = new PrintWriter(new OutputStreamWriter(new FileOutputStream(BUS_SQL_FILE)), true); String sql = null; int lineid = 0; int stopno = 0; String linename = null; List busLine = root.getChildren("gj-info"); Iterator iterator = busLine.iterator(); while (iterator.hasNext()) { curr = (Element) iterator.next(); stops = StringUtil.split(curr.getChildText("road-info")); for (int i = 0; i < stops.length; i++) { if (!stop.containsKey(stops[i])) { stop.put(stops[i], stopno); out.println("add " + stops[i] + ", " + stopno); stopno++; } } } int lineno = 0; Iterator ite = busLine.iterator(); while (ite.hasNext()) { curr = (Element) ite.next(); linename = curr.getAttribute("roadid").getValue(); line.put(linename, lineno); lineno++; } out.println(line.toString()); out.println(stop.toString()); lineid = 0; iterator = busLine.iterator(); while (iterator.hasNext()) { curr = (Element) iterator.next(); linename = curr.getAttribute("roadid").getValue(); stops = StringUtil.split(curr.getChildText("road-info")); for (int i = 0; i < stops.length; i++) { //sql = "insert into bus values(" +stops[i] + "," + lineid + "," + i + ")"; // stop.get(stops[i]) out.println(stops[i] + " " + linename); sql = "insert into bus values(" + stop.get(stops[i]) + "," + line.get(linename) + "," + i + ");"; pw.println(sql); } lineid++; } pw.flush(); pw.close(); } catch (Exception e) { e.printStackTrace(); } } }
该程序会生成一个bus.sql,其中包含在数据库中添加数据的sql语句。
3.2.2.导入数据:
在DOS命令行使用以下命令导入数据(sql文件存在f:/sql):
mysql –u root –p test<f:\sql\stop.sql
mysql –u root –p test<f:\sql\line.sql
mysql –u root –p test<f:\sql\bus.sql
3.3.查询方案:
3.3.1.线路查询:
线路查询指根据线路名查询该线路通过的所有站:
例如查询线路1通过的所有站,可以通过以下命令查询:
Select * from bus where lineid=1
执行结果如下图所示:
3.3.2.过站查询:
过站查询指通过特定站点的所有线路名称,可以通过以下的命令查询:
Select * from bus where stopid=0;
结果如下图所示:
3.3.3.直达乘车查询:
直达乘车查询指查询两个站点之间的公交车次,可以通过以下语句:
select B.lineid from (select lineid from bus where stopid = 0) A,(select lineid from bus where stopid = 1) B where A.lineid = B.lineid;
结果如下:
3.3.4.一次换乘查询:
当两个站点之间没有直接到达的公交车时,需要寻找第三个站点进行一次换乘,寻找第三个中间站点可以通过以下的sql语句:
select A.stopid from
(
select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 0)
)A,
(
select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 922)
)B
where A.stopid= B.stopid;
结果如下:
然后可以通过直达车次查询查到起始车站到中间车站以及中间车站到目标车站的车次,从而完成一套乘车方案。
3.3.5.两次换乘:
当一次换乘中的中间站点找不到时,就需要进行更多次数的换乘,发生二次换乘时,需要找到两个中间节点,本系统采用的方案是先找到两个中间节点之间的乘车方案(直达),可以使用以下的sql语句:
select A.lineid from
(select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in(select lineid from bus where stopid = 0))) A,
(select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in
(select lineid from bus where stopid = 67))) B
where A.lineid = B.lineid;
然后通过查找从起始车站到以上中间线路中的任意车站的直达车,然后换乘中间线路,然后查找从中间线路上的任意车站到目标线路上的直达车,即可完成一套乘车方案。
3.3.查询优化:
因为当换乘次数增多的时候,此时数据的查询速度增长,所以有必要采用优化措施:
采用建立索引的方式优化:
Create index bus_stopid on bus (stopid)
Create index bus_lineid on bus (lineid)
Create index stop_stopname on stop (stopname)
通过以上的索引,将原来的直达查询由10s缩短到0.2s左右,二次换乘的查询也由原来的两分钟缩短为1s,属于可以接受的范围。
3.4.系统设计:
3.4.1.系统架构:
系统采用基于java的B/S结构,采用mysql作为数据库,glassfish为应用服务器,使用jdbc方式连接数据库,方便对于sql语句调优。
将大多数业务逻辑,比如过站查询,线路查询封装在javabean中,通过jsp直接调用javabean来实现业务,从而降低了jsp和业务逻辑的耦合,提高了可靠性,可重用性。
3.4.2.核心代码:
package org.tiantian.busquery; import java.sql.Connection; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; public class BusQuery { private Connection conn = null; private ArrayList StopsList = new ArrayList(); private ArrayList IdList = new ArrayList(); private ArrayList DirectResultList = new ArrayList(); private Statement sm = null; private ResultSet rs = null; private ArrayList midStopList = new ArrayList(); public BusQuery() { try { conn = Db.getConnection(); sm = conn.createStatement(); } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } } public ArrayList QueryByStop(String StopName) { try { String linename = ""; rs = sm.executeQuery("select * from bus,line,stop where stop.stopname=" + "\'" + StopName + "\'" + " and line.lineid=bus.lineid and bus.stopid=stop.stopid;"); // System.out.println("select * from bus,line,stop where stop.stopname=" + "\'" + StopName + "\'" + " and line.lineid=bus.lineid and bus.stopid=stop.stopid;"); while (rs.next()) { linename = rs.getString(5); //System.out.println(linename); IdList.add(linename); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return IdList; } public ArrayList QueryById(String Id) { try { String stopname = ""; rs = sm.executeQuery("select * from bus,line,stop where line.linename=" + Id + " and bus.lineid=line.lineid and bus.stopid=stop.stopid order by seq;"); while (rs.next()) { stopname = rs.getString(7); StopsList.add(stopname); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return StopsList; } public ArrayList findMidStop(int stop_from, int stop_to) { try { String sql = "select A.stopid from (select distinct stopid from bus where lineid in (select lineid from bus where stopid = " + stop_from + ") ) A, (select distinct stopid from bus where lineid in (select lineid from bus where stopid = " + stop_to + ")) B where A.stopid= B.stopid;"; rs = sm.executeQuery(sql); while (rs.next()) { midStopList.add(rs.getInt(1)); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return midStopList; } public ArrayList findMidLine(int stop_from, int stop_to) { ArrayList midLineList = new ArrayList(); try { String sql = "select A.lineid from (select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in (select lineid from bus where stopid = " + stop_from + "))) A, (select distinct lineid from bus where stopid in (select distinct stopid from bus where lineid in (select lineid from bus where stopid =" + stop_to + "))) B where A.lineid = B.lineid;"; rs = sm.executeQuery(sql); while (rs.next()) { midLineList.add(rs.getInt(1)); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return midLineList; } public int getLineId(String linename) { int lineId = -1; try { String sql = "select * from line where line.linename=\'" + linename + "\';"; rs = sm.executeQuery(sql); while (rs.next()) { lineId = rs.getInt(1); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return lineId; } public String getLineName(int lineid) { String lineName = ""; try { String sql = "select * from line where line.lineid=\'" + lineid + "\';"; rs = sm.executeQuery(sql); while (rs.next()) { lineName = rs.getString(2); // System.out.println(lineName); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return lineName; } public int getStopId(String stopname) { int stopId = -1; try { String sql = "select * from stop where stop.stopname=\'" + stopname + "\'"; System.out.println(sql); rs = sm.executeQuery(sql); while (rs.next()) { stopId = rs.getInt(1); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return stopId; } public String getStopName(int stopid) { String stopName = ""; try { String sql = "select * from stop where stop.stopid=\'" + stopid + "\'"; System.out.println(sql); rs = sm.executeQuery(sql); while (rs.next()) { stopName = rs.getString(2); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return stopName; } public ArrayList findDirect(String from, String to) { int from_id = this.getStopId(from); int to_id = this.getStopId(to); ArrayList al = this.findDirect(from_id, to_id); ArrayList nameList = new ArrayList(); for (int i = 0; i < al.size(); i++) { nameList.add((String) getLineName(((Integer) al.get(i)))); System.out.println(getLineName(((Integer) al.get(i)))); } return nameList; } public ArrayList findDirect(int stop_from, int stop_to) { try { int lineid; DirectResultList.clear(); rs = sm.executeQuery("select distinct B.lineid from (select distinct lineid from bus where stopid =" + stop_from + " ) A,(select distinct lineid from bus where stopid = " + stop_to + ") B where A.lineid=B.lineid "); while (rs.next()) { lineid = rs.getInt(1); DirectResultList.add(lineid); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return DirectResultList; } public int getDistance(int from, int to, int lineid) { int start = 0; int end = 0; try { rs = sm.executeQuery("select * from bus where stopid=" + from + " and lineid=" + lineid); while (rs.next()) { start = rs.getInt("seq"); } rs = sm.executeQuery("select * from bus where stopid=" + to + " and lineid=" + lineid); while (rs.next()) { end = rs.getInt("seq"); } } catch (SQLException ex) { Logger.getLogger(BusQuery.class.getName()).log(Level.SEVERE, null, ex); } return (start - end) > 0 ? (start - end) : (end - start); } public static void main(String[] args) { BusQuery instance = new BusQuery(); List stops = instance.QueryById("0"); System.out.println(instance.getDistance(4, 111, 9)); } }
- 未命名.JPG (24.3 KB)
- 下载次数: 53
相关推荐
厦门公交查询系统是最轻量级的公交(公交线路)查询系统,只有一个文本数据库文件和一个.php文件,PHP TXT查询,支持路线查询(请输入路线名,如:750),站点查询(请输入站点名,如:火车站),起终点站查询(输入起始站和...
《厦门公交查询系统 v0.2 PHP TXT》是一款基于PHP编程语言开发的轻量级公交查询软件。这个系统的核心特点是其简洁性和高效性,仅包含一个数据库文件和一个.php执行文件,大大降低了系统的复杂度,使得部署和维护变得...
《厦门公交查询系统》 本项目为“厦门公交查询系统”的源码,旨在提供一个方便、快捷的公共交通信息查询平台,让市民和游客能够轻松获取厦门公交车线路、站点及时刻等详细信息。作为一款基于软件工程开发的项目,它...
【厦门公交查询系统 v0.2.rar】是一个基于PHP开发的轻量级公交查询系统,专为厦门地区的公共交通服务设计。这个系统包含了三个主要的查询功能:路线查询、站点查询和站到站查询,旨在方便用户快速获取公交出行信息。...
《基于Android系统的厦门公交查询系统设计》探讨了在Android平台上构建城市公交查询系统的方法。该系统结合SQLite数据库和百度地图API,利用GPS技术实现实时定位,为用户提供公交线路查询、公交站点查询和公交换乘...
最轻量级的公交查询系统
本软件可以支持全国公交数据查询,现在已收集整理了北京、上海、福州、厦门、兰州、广州、深圳、南宁、长沙、苏州、济南、青岛、成都、昆明、大理、杭州等城市公交数据,所有公交数据收集于网上,只要自己整理相应...
4. **路线规划**:利用这些数据,可以开发公交查询应用,提供最佳路径建议。 5. **城市规划**:为城市交通规划提供基础数据支持,评估现有公交网络的合理性,优化线路设置。 6. **教学与研究**:对于地理信息科学...
它不仅包含了公交支付功能,还整合了厦门公交集团的多项便民服务,如网约车、出租车、公交查询等。通过这个平台,市民可以轻松规划出行路线,享受多样化的交通服务。特别值得一提的是,APP还与厦门爱乐乐团和厦门...
内容索引:PHP源码,查询搜索,公交查询 厦门公交线路查询PHP版 v0.2,用来查询公交站名、公交线路、起点终点查询,程序核心是PHP+TXT,TXT作为数据库,本数据为厦门10月1日票改后最新数据,显示公交运行时间。
这些信息对于乘客查询公交换乘、规划出行路径非常有用。同时,对公交站点的分析有助于评估公交服务的可达性和便捷性,为提升公共交通服务质量提供依据。 4. **线路站点分布**:这部分数据详尽记录了各公交线路途经...
8. **公众信息服务**:数据可以被集成到地图应用中,为市民提供实时的公交和地铁查询服务。 综上所述,“厦门2020年公交和地铁站点及线路数据”不仅提供了丰富的地理信息,也是城市规划、交通管理和公众服务的重要...
《基于Android平台的智能掌上公交系统》的开题报告主要探讨了在移动设备上构建一个智能公交查询系统的必要性和可行性。这篇报告聚焦于利用3G(GPS、GIS、GPRS)技术,以提高公共交通服务的效率和用户体验,特别是在...
标题“20个城市公交线路及站点矢量数据 经纬度坐标 北京成都大连福州广州杭州合肥济南南京青岛厦门上海深圳沈阳苏州天津武汉西岸长春长沙”表明,这是一个包含中国20个主要城市公交线路和站点的矢量数据集,其中每个...
- **全面的服务功能**:涵盖了市民生活的各个方面,如公交查询、天气预报、新闻资讯等。 - **用户友好性**:界面简洁明了,操作简单方便,适合不同年龄段的人群使用。 - **技术创新**:不断引入新技术,提升用户体验...
在国内外现状方面,已经有一些公交查询软件,如“爱帮公交”、“百度地图”、“谷歌地图”和“掌上公交”等,但它们大多基于静态数据,无法实时反映交通状况,缺乏智能化和人性化设计。例如,无法满足老年人或计算机...
4. **公众信息服务**:结合地图应用,提供公交查询、换乘建议等功能,方便市民出行。 5. **学术研究**:对比不同时期的数据,研究城市公交系统的发展趋势和影响因素。 总的来说,这个数据集是研究和理解中国主要...
8. **数据应用**:这些数据可以被开发者用来创建移动应用,提供公交查询服务,或者供研究者进行城市交通研究,例如拥堵情况、乘客流动性分析等。 9. **公共交通规划**:对于城市规划者来说,这些数据是评估和改进...