上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: using System;using ESRI.ArcGIS.Carto;using ESRI.ArcGIS.Geometry;using ESRI.ArcGIS.Geodatabase;using ESRI.ArcGIS.NetworkAnalysis;namespace GisEditor{/// /// 最短路径分析/// public class ClsPathFinder{ private IGeometricNetwork m_ipGeometricNetwork; private IMap m_ipMap; private IPointCollection m_ipPoints; 阅读全文
posted @ 2014-04-02 09:08 oftenlin 阅读(4897) 评论(0) 推荐(0) 编辑
摘要: /****点到直线的距离**** 过点(x1,y1)和点(x2,y2)的直线方程为:KX -Y + (x2y1 - x1y2)/(x2-x1) = 0* 设直线斜率为K = (y2-y1)/(x2-x1),C=(x2y1 - x1y2)/(x2-x1)* 点P(x0,y0)到直线AX + BY +C =0DE 距离为:d=|Ax0 + By0 + C|/sqrt(A*A + B*B)* 点(x3,y3)到经过点(x1,y1)和点(x2,y2)的直线的最短距离为:* distance = |K*x3 - y3 + C|/sqrt(K*K + 1)*/public static double Ge 阅读全文
posted @ 2014-04-02 09:08 oftenlin 阅读(4597) 评论(0) 推荐(0) 编辑
摘要: 1. 最经典的方法通过打印语句来调试程序 System.err.println("Bad Data"+value.toString()); 这些输出错误都会记录到一个标准错误中,可以通过WebUI进行查看2.可以创建一个自定义计数器来统计整个数据集中不合理的数据的数量。 首先创建一个enum enum BAD_DATA{ BAD_DATA_1, BAD_DATA_2 }if(strs[1].split(",")!=null&&strs[1].split(",").length>11){ frontValues.a 阅读全文
posted @ 2014-03-10 16:42 oftenlin 阅读(251) 评论(0) 推荐(0) 编辑
摘要: package com.sun.mysql;import java.io.DataInput;import java.io.DataOutput;import java.io.IOException;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.util.Iterator;import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.Path;import o 阅读全文
posted @ 2014-03-10 16:13 oftenlin 阅读(7464) 评论(2) 推荐(1) 编辑
摘要: Hadoop 分布式缓存实现目的是在所有的MapReduce调用一个统一的配置文件,首先将缓存文件放置在HDFS中,然后程序在执行的过程中会可以通过设定将文件下载到本地具体设定如下:public static void main(String[] arge) throws IOException, ClassNotFoundException, InterruptedException{ Configuration conf=new Configuration(); conf.set("fs.default.name", "hdfs://192.168.1.45: 阅读全文
posted @ 2014-03-10 16:09 oftenlin 阅读(4050) 评论(0) 推荐(0) 编辑
摘要: 1.find /etc -name "*" | xargs grep "hello abcserver" 按照内容过滤2.grep -v "^#" welcome.conf 匹配不是以#开始的行3.grep "[a-z]\{5\}" aa 匹配任意 阅读全文
posted @ 2013-12-11 08:39 oftenlin 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1.添加一个宿主用户:useradd vsftpd -s /sbin/nologin2.安装db4-utils,通过本底数据文件实现虚拟用户访问yum install db4-utils3.创建ftp的目录mkdir /opt/ftp4.生成虚拟用户数据文件db_load -T -t hash -f /etc/vsftpd/vsftpuser.txt /etc/vsftpd/vsftpuser.db5.修改生成的用户数据文件权限chmod 600 /etc/vsftpd/vsftpuser.db6.修改PAM 认证文件 /etc/pam.d/vsftpd 注销原有内容后添加auth requi 阅读全文
posted @ 2013-12-05 17:13 oftenlin 阅读(1969) 评论(0) 推荐(0) 编辑
摘要: http://blog.fens.me/java-websocket-intro/ 阅读全文
posted @ 2013-11-26 05:44 oftenlin 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1.Linux 查看Windows共享文件mount -t cifs //192.168.1.100/code /opt/share/ -o username=Administrator,password=123456 阅读全文
posted @ 2013-08-29 13:52 oftenlin 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 将SVN Server 创建成后台服务的脚本:sc create svnserve binPath= "\"C:\Program Files\Subversion\bin\svnserve.exe\" --service --root D:\Repositories" displayname= "SVNServer" depend= Tcpip start= auto 阅读全文
posted @ 2013-05-31 10:21 oftenlin 阅读(328) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页