Wednesday, April 26, 2017

mongodb下载

MongoDB各个64位版本下载地址:
http://dl.mongodb.org/dl/win32/x86_64

Saturday, April 22, 2017

eclipse package explorer hierarchical

层级显示

http://stackoverflow.com/questions/3915961/how-to-view-hierarchical-package-structure-in-eclipse-package-explorer

参加上面,ctrl+F10

intellij idea 打开多个project

http://blog.csdn.net/zht666/article/details/47831893

Java执行jar包方式

http://www.cnblogs.com/adolfmc/archive/2012/10/07/2713562.html


用OneJar打包后Java -jar ****.jar总是运行指定的主方法,现在工程中有很多其他的主方法,想要运行指定的。可以用下面的命令:

java -classpath ****.jar ****.****.className [args]
2

Thursday, April 6, 2017

python 添加自己开发的模块

  1. 定位模块文件地址的方法
import codecs
codecs.__file__

打印Python系统路径
import sys
sys.path

  1. 添加自己的模块

here are a few ways. One of the simplest is to create a my-paths.pth file (as described here). This is just a file with the extension .pth that you put into your system site-packages

在site-packages中添加一个文件my-paths.pth,其中pth文件中添加自己的模块地址就行了




扩展 Python的内置函数