上篇文章写了求任意两点间最短路径的sql函数,这篇文章讲一下如何把上面介绍的子功能整合到系统中去。
1、geoserver登录
首先单击geoserver安装路径下的start Geoserver
待geoserver启动后,在浏览器中输入,http://localhost:8080/geoserver/web/
输入用户名密码登录geoserver
2、创建工作区
...
分类:
其他 时间:
2015-06-03 21:39:00
收藏:
0 评论:
0 赞:
0 阅读:
638
localstorage的使用
1.获取对象
var localstroage = window.localStorage;
2.存储值
localstroage.setItem('openid','ksjhfkjajkdfjkszdjfksad');
localstroage.setItem('uid','10001');
3.获取值
var openid = ...
分类:
Web开发 时间:
2015-06-03 21:38:49
收藏:
0 评论:
0 赞:
0 阅读:
327
C语言中的enum(枚举)用法...
分类:
编程语言 时间:
2015-06-03 21:38:38
收藏:
0 评论:
0 赞:
0 阅读:
285
erlang是开源的,很多人都研究过源代码。但是,从erlang代码到c代码,这是个不小的跨度,而且代码也比较复杂。所以这里,我利用一些时间,整理下erlang代码的执行过程,从erlang代码编译过程,到代码执行过程做讲解,然后重点讲下虚拟机执行代码的原理。...
分类:
其他 时间:
2015-06-03 21:38:30
收藏:
0 评论:
0 赞:
0 阅读:
245
1.stackoverflow里的回答是这样的,也是普遍的情况:
AppCompat is now more strict on what it expect in theme window flags, more closely matching what you would get from the framework.
The main reason behind this ...
分类:
移动平台 时间:
2015-06-03 21:38:18
收藏:
0 评论:
0 赞:
0 阅读:
462
代码:
#include
using namespace std;
int main()
{
int n;
int a[18];
for(int i=1;i<=17;i++)
a[i]=i*i;
while(scanf("%d",&n)&&n)
{
long long c1[350],c2[350];
fo...
分类:
其他 时间:
2015-06-03 21:38:09
收藏:
0 评论:
0 赞:
0 阅读:
283
这篇文章的上半部分,是我2011年在豆瓣上发表的《五天学会绘画》书评,我和老婆就相识于这个书评。后记部分,是对绘画,和用互联网方法找女友的一些思考。...
分类:
其他 时间:
2015-06-03 21:37:58
收藏:
0 评论:
0 赞:
0 阅读:
278
描述了在CentOS-6.4-minimal系统中安装和管理MongoDB-3.0.2的步骤...
分类:
数据库技术 时间:
2015-06-03 21:37:48
收藏:
0 评论:
0 赞:
0 阅读:
294
NotImplementedError: No support for ALTER of constraints in SQLite dialect...
分类:
数据库技术 时间:
2015-06-03 21:37:38
收藏:
0 评论:
0 赞:
0 阅读:
268
Map map = new HashMap();
map.put("DisplayName", "TestValue");
map.put("DisplayVersion", "xxx");
String commandPrefix = "cmd.exe /k reg add ";
String key = "\"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microso...
分类:
编程语言 时间:
2015-06-03 21:37:19
收藏:
0 评论:
0 赞:
0 阅读:
294
1
HAL程序必须要一个HAL-MODULE-INFO——SYM(hw_module_t)变量,有了这个才能被Android系统调用。类似于(C函数的main()和linux驱动程序的init()函数)
2 HAL编程是三个关键结构体:
struct hw_module_t; (HAL模块 中)
struc...
分类:
移动平台 时间:
2015-06-03 21:37:08
收藏:
0 评论:
0 赞:
0 阅读:
314
今天上机的时候偷懒没有做项目,看到了13级大神王振学长的个人博客,发现了他制作的网页版烟大课表。
很早就使用了他制作的手机端的迷你课表。
对他的技术真的佩服的五体投地。
好像是他把所有的课表都生成了一个数据库。
索性又任性了,直接写个PC客户端吧。。。
用的还是VB。。。
正题:
用了两个窗口(form):
一个用来显示选择学院和班级,一个用来显示课表
两个按钮(command)...
分类:
移动平台 时间:
2015-06-03 21:36:39
收藏:
0 评论:
0 赞:
0 阅读:
260
十分简单的并查集问题,注意建图的方式
#include
#include
#include
#include
using namespace std;
const int maxn = 1005;
const int maxd = 5000005;
const int dir[2][2] = {{0,1},{1,0}};
int n,m,mat[maxn][maxn],cnt,fa[maxd];...
分类:
其他 时间:
2015-06-03 21:36:30
收藏:
0 评论:
0 赞:
0 阅读:
162
Description
Japan plans to welcome the ACM ICPC World Finals and a lot of roads must be built for the venue. Japan is tall island with N cities on the East coast and M cities on the West coast (M <...
分类:
其他 时间:
2015-06-03 21:36:18
收藏:
0 评论:
0 赞:
0 阅读:
245
#include
#include
using namespace std;
class xiaok{
public:
int k;
int a;
void han(){cout<<k<<a<<endl;}
};
int main(int argc, char const *argv[])
{
xiaok *p=(xiaok*)malloc(sizeof(xiaok));
new(...
分类:
其他 时间:
2015-06-03 21:35:59
收藏:
0 评论:
0 赞:
0 阅读:
121
C语言中的union用法...
分类:
编程语言 时间:
2015-06-03 21:35:41
收藏:
0 评论:
0 赞:
0 阅读:
198
时间在任何系统里都是最基本的部分,必不可少。本文介绍CentOS系统中与时间的相关命令。基本概念
硬件时钟(Hardware Clock)
硬件时钟,也叫实时时钟(RealTimeClock),或者BIOS时钟,或者CMOS时钟。它是位于机器主板上的实际硬件设备,一般靠电池维持运行。所以,即使机器关机,它也会一直保持记录当前时间,一般不是十分精确。
系统时间(System Time)
系统时间指...
分类:
其他 时间:
2015-06-03 21:35:18
收藏:
0 评论:
0 赞:
0 阅读:
204
一、sh脚本如下:
#!/bin/sh
location="/home/sharedir/"
find $location -mtime +30 -type f |xargs rm -f
保存命名为del.sh
另外两种查找相关文件的方法如下:
1)find /home/sharedir/
-mtime +30 -type f -name *.gz
2)find /home/s...
分类:
系统服务 时间:
2015-06-03 21:35:09
收藏:
0 评论:
0 赞:
0 阅读:
339
CentOS-6.4-minimal版中安装JDK_Maven_Subversion以及修改rpm包安装路径...
分类:
其他 时间:
2015-06-03 21:34:59
收藏:
0 评论:
0 赞:
0 阅读:
140
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main(void) {
int n;
while(cin >> n) {
map > tbl;
for(int i = 0; i < n; ++i)
...
分类:
编程语言 时间:
2015-06-03 21:34:48
收藏:
0 评论:
0 赞:
0 阅读:
253