- 浏览: 177198 次
- 性别:
- 来自: 苏州
最新评论
-
jiasky:
好像是在练书法。
Oracle Function -
blackangel_can:
这样的代码见得多了。
Javascript Print(*) -
tianhendi:
Apache Solr and Tomcat6 Search engine -
laserdance:
我想问下,你怎么从Tomcat等服务器中把上述文件xml准确定 ...
Java parse XML methods(4) -
cskysnew:
第二种如果去掉synchronized,就不是线程安全的,应该 ...
Singlton ture or not?
文章列表
移动电商
- 博客分类:
- Java
- Javascript
海外旅行购物电商平台-购轻松,是我们从零开发的App应用,欢迎大家下载使用,
http://a.app.qq.com/o/simple.jsp?pkgname=com.yhiker.igoeasy
Top 10 Books For Advanced Level Java Developers
Java is one of the most popular programming language nowadays. There are plenty of books for beginners. But to those who have programmed with Java for a while, some of them may look somehow simple and redundant. The beginner’s books do not bring fresh ...
要使API易用、易于接受和足够灵活,应该遵循以下原则:
An API is a user interface for a developer - so put some effort into making it pleasant
Use RESTful URLs and actions
Use SSL everywhere, no exceptions
An API is only as good as its documentation - so have great documentation
Version via the URL, not via headers
Use query ...
## {{{ http://code.activestate.com/recipes/131499/ (r2)
class Subject:
def __init__(self):
self._observers = []
def attach(self, observer):
if not observer in self._observers:
self._observers.append(observer)
def detach(self, observer):
try:
...
Python decorator
- 博客分类:
- Python
#decorator
def before(func):
def wapper(*args):
print "print before invoke foo function"
func(*args)
print "print after invoke foo function"
return wapper
@before
def foo(x):
print "this is dummy function" + x
foo("mm")
Win7 无法访问局域网资源,提示密码失败,是以域用户登录的在通过 \\192.168.0.135 访问局域网中共享资源时,发现输入的用户和密码通示过验证,提用户名或密码错误。但是,实际上,用户名和密码是正确的。但是它用的是域方式登录,在选择以其他方式登录时,提示一个用户有名框,一个密码,接下来是一个 “域:UFO”的提示框,那个不能改,UFO是机器的名称。
结论:机器时间与服务器时间不在同一天,修改日期后,正常登陆.
Import the backup database file to Mysql,use below command.
1.use cmd command to locate the mysql bin directory:
e.g., C:\Program Files\MySQL\bin
2. use the command to import data to database:
mysql -uroot -p123 sfproject<d:\php\maxtor_bak1
Note: sfproject is the database name. and d:\php\ma ...
1.Receive batch from WIP to inventory.
2.Synch inventory data amongst different system,such as Oracle MFG,Reflection and MES.
3.Web version, simple functions.
- 2009-06-18 21:44
- 浏览 840
- 评论(0)
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost/jws" href="Oracle.jnlp">
<information>
<title>Oracle query</title>
<vendor>Aaron</vendor>
<description>For the des ...
- 2009-04-20 13:26
- 浏览 1161
- 评论(0)
Study the VS2008 recently, find that it's easy to create the windows service by vs2008, and list the steps as below.
1.create a console project, and change the program.cs file to below also need add the System.Configuration.Install,System.ServiceProcess to reference
class Program : ServiceBase ...
- 2009-03-18 19:22
- 浏览 2293
- 评论(0)
1) Download the axis2 v1.4 plugin for eclipse,but it shows the version 1.3.0,
ok,no problem, unzip the Axis2_Codegen_Wizard_1.3.0 to $ECLIPSE_HOME/plugins/
2) Copying the "backport-util-concurrent-3.1.jar" from "$AXIS2_HOME/lib/" to "$ECLIPSE_HOME/plugins/Axis2_Codegen_Wizar ...
- 2009-03-12 19:53
- 浏览 1603
- 评论(0)
Oracle Shop Floor Management (车间管理 随着互联网与语音/数据通信的迅猛发展,对跨所有行业的制造业务的压力也与日俱增。除了与缩短产品生命周期、复杂产品设计以及全球供应链相关的传统挑战外,制造商还需要能实时地获得车间的信息,以便改善顾客服务并且对车间运作进行及时调整。这些关键性的变化正在重新定义管理制造业的方式。 随着互联网与语音/数据通信的迅猛发展,对跨所有行业的制造业务的压力也与日俱增。除了与缩短产品生命周期、复杂产品设计以及全球供应链相关的传统挑战外,制造商还需要能实时地获得车间的信息,以便改善顾客服务并且对车间运作进行及时调整。这些关键性的变化正在重新定义管理 ...
- 2009-02-27 20:54
- 浏览 1281
- 评论(0)
1.Show method.
int index = Opened(this, "FrmMytest");
if (index == -1)
{
FrmMytest frmMytest = new FrmMytest();
frmMytest.MdiParent = this;
frmMytest.Show();
}
else
{
...
- 2008-12-15 11:14
- 浏览 1003
- 评论(0)