`
z610
  • 浏览: 37765 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
public static void main(String[] args) { try { String filename = "/home/xxx/apps/eclipse/workspace/Test/bin/com/ibm/plugin/test/MyChecker.class"; DataInputStream in = new DataInputStream(new FileInputStream(filename)); int magic = in.readInt(); if (magic != 0xcafe ...
  Another transaction by user XXXXXX is already in progress for this app and major version. That user can undo the transaction with appcfg.py's "rollback" command.     解决方法:   1.Another transaction by user xxx is already in progress for this app and major version. That user can un ...

旋转立方体

    博客分类:
  • SWT
附件里是一个以SWT的GC 画的动态的立方体
public class Test { public static void main(String[] args) { final Display display = new Display(); final Shell shell = new Shell(display); shell.setLayout(new FillLayout()); shell.addKeyListener(new KeyListener() { @Override public voi ...
import java.io.BufferedInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.util.Enumeration;import java.util.jar.Attributes;import java.util.jar.JarEntry;import java.util.jar.JarFile;import java.util.jar.JarOutputStream;import java.util.jar.Manifest;public class Test { ...
原文出处  http://www.learncpp.com/cpp-tutorial/a2-using-libraries-with-visual-studio-2005-express/       To recap the process needed to use a library: Once per library: 1) Acquire the library. Download it from the website or via a package manager. 2) Install the library. Unzip it to a director ...
原文出处  http://www.learncpp.com/cpp-tutorial/a1-static-and-dynamic-libraries/ A library is a package of code that is meant to be reused by many programs. Typically, a C++ library comes in two pieces: 1) A header file that defines the functionality the library is exposing (offering) to the programs us ...
因为自己最熟悉java,所以现在打算就用它开发了。经过一周的时间,现在基本的几何图形已经实现,如Point、LineString、Polygon等。 而且基本的评面变换的代码也搞定了,现在支持平移、放大缩小等仿射变换了。呵呵,这期间可把空间几何,解析几何又看了一遍。 以上这些都是计算机的知识,还是比较容易的。下面要做的就是和GIS真正相关的了。如地球坐标模型,如地心坐标系、地理坐标系、投影坐标系。还有基本的空间数据规范了。还好从网上下了一本gis的入门书籍,正看呢。

GIS入门

    博客分类:
  • GIS
   最近自己突然对GIS感了兴趣,于是打算自己写把GIS的原理搞明白了,然后打算用Java或者C++实现一个简单的应用。

IT实践

感觉自己好久没有进步了,现在自己给自己定个目标吧。 从几天起给自己定个目标吧,开始看一些程序的源代码,我觉着这样是会使自己提高的比较快。然后再测测自己的学习能力吧,那就选择一个自己一点都不熟悉的领域GIS开始吧。 而且感觉做程序的,更注重动手,如果只看不做,不但容易忘记而且体会不深。
    最近一直在看javascript面向对象方面的文章,从中学到了不少的东西,谢谢无数javaeye的作者们,但是总觉着没有一个系统全面的认识,于是想寻找一本全面介绍javascript面向对象编程的书籍,终于找到了一本,而且这几天自己已经把这本书看完了,感觉讲解javascript面向对象编程,讲的通俗易懂,而且又全面,是一本不错的javascript面向对象编程的书籍,特向大家推荐,书名是Object-Oriented JavaScript Create scalable, reusable high-quality JavaScript applications, and librar ...
孙鑫vc视频教程 http://www.codeguru.cn/VC%26MFC/sunxinvc C函数实例参考手册 http://www.codeguru.cn/CPP/CExample/ C\C++实例参考手册 http://www.codeguru.cn/CPP/cppExample/ Win32Api实例参考手册 http://www.codeguru.cn/VC%26MFC/Win32ApiExample/ MFC实例参考手册 http://www.codeguru.cn/VC&MFC/MFCExample/ HTML实例参考手册 http://www. ...
   java中有没有类似windows c++编程中的WaitForMultiObjects()的机制,同时等待多个条件,而不是一次等待一个    比如,java中lock和conditon问题,假如有一个lock,有此lock生成了多个condition,c1,c2,...cn,假如存在两个线程,其中一个线程按如下等待条件,如     c1.wait();    c2.wait();    ...    cn.wait();    而另一个线程如下等待条件     cn.wait();    ...    c2.wait();    c1.wait();    这样就容易造成死锁,随着co ...
Global site tag (gtag.js) - Google Analytics