上一页 1 ··· 193 194 195 196 197 198 199 200 201 ··· 329 下一页
摘要: 在部署CRM与Sharepoint2010集成文档管理之后,一直担心如果需要在新服务器上重新部署CRM,那么之前与CRM集成的Sharepoint2010文档内容,是否可以重新正确映射到相应的文档位置。经过验证,确定可以实现,下面是简要操作步骤:1.从原SQL中将wss_content数据库备份2.将wss_content加载到新数据库环境中3.在新sharepoint环境中通过网站导出这个wss_content的网站集 4.备份完成后,通过Sharepoint2010 Management Shell执行恢复操作5.输入命令:restore-spsite http://site-Pa... 阅读全文
posted @ 2013-06-26 19:27 jlins 阅读(159) 评论(0) 推荐(0)
摘要: 前面已经准备好了Struts-2.3.15,现在就可以直接搭建Struts2的工程了。前面http://blog.csdn.net/huangchnegdada/article/details/9179041有对Struts-2.3.15的准备工作的详述。首先打开MyEclispe新建一个Web Project,名字就叫Struts2_0100_Introduction,接下来就是配置Struts2的框架:然后解压E:\Study Tools\Struts2\struts-2.3.15\apps\下的struts2-blank.war 里面有struts的最基本的配置,首先找到E:\Study 阅读全文
posted @ 2013-06-26 19:25 jlins 阅读(567) 评论(0) 推荐(0)
摘要: 1.HTML中元素和标签元素是由单个或一对标签定义的包含范围。一个标签就是左右分别有一个小于号()的字符串。开始标签是指以不以斜杠(/)开头的标签,其内是一串允许的属性-值对。结束标签则是以一个斜杠(/)开头的标签。如: 连接 2.HTML元素的四种形式空元素带有属性的空元素带有内容的元素连接带有内容和属性的元素连接综上例子//起始符号。如果没有浏览器也可以解析 //开始文档头 My name is cauthy!//开始文档的标题 //结束文档的标题 //结束文档的头部 //开始文档体 Hello World!//浏览器显示的内容 //... 阅读全文
posted @ 2013-06-26 19:23 jlins 阅读(330) 评论(0) 推荐(0)
摘要: A target specifies a product to build and contains the instructions for building the product from a set of files in a project or workspace. A target defines a single product; it organizes the inputs into the build system—the source files and instructions for processing those source files—required to 阅读全文
posted @ 2013-06-26 19:21 jlins 阅读(318) 评论(0) 推荐(0)
摘要: An Xcode project is a repository for all the files, resources, and information required to build one or more software products. A project contains all the elements used to build your products and maintains the relationships between those elements. It contains one or more targets, which specify how t 阅读全文
posted @ 2013-06-26 19:19 jlins 阅读(235) 评论(0) 推荐(0)
摘要: A build setting is a variable that contains information about how a particular aspect of a product’s build process should be performed. For example, the information in a build setting can specify which options Xcode passes to the compiler.You can specify build settings at the project or target level 阅读全文
posted @ 2013-06-26 19:17 jlins 阅读(287) 评论(0) 推荐(0)
摘要: A workspace is an Xcode document that groups projects and other documents so you can work on them together. A workspace can contain any number of Xcode projects, plus any other files you want to include. In addition to organizing all the files in each Xcode project, a workspace provides implicit and 阅读全文
posted @ 2013-06-26 19:15 jlins 阅读(267) 评论(0) 推荐(0)
摘要: 我们在编写JNI代码时有一个可选的文件Application.mk ,这个文件你可以不创建,但是有时候是有必要写一个这样的文件的。Application.mk文件用于描述应用程序本身的一些属性信息,如应用程序依赖哪些库,应用程序的根目录,应用程序运行在哪些类型指令集的CPU下,还有一些编译选项,在此文件中定义的东西会应用于整个应用程序包括android.mk也会用到这里面的选项。 如果你不写此文件,会默认编出所有android.mk中写的libs / modules APP_ABI会默认指定为armeabi下面我们主要介绍APP_ABI的用途。 首先市面上的android智能设备很多也很杂,各 阅读全文
posted @ 2013-06-26 19:13 jlins 阅读(1702) 评论(0) 推荐(0)
摘要: 栈的实现#!/usr/bin/env python #coding=utf-8 #python version 2.7.4class stack: def __init__(self,list=None): self.contain = list self.msize=100; self.top = 0; def getTop(self): if(self.top>0): return self.contain[self.top-1] else: return No... 阅读全文
posted @ 2013-06-26 19:11 jlins 阅读(437) 评论(0) 推荐(0)
摘要: 恒等有理式 总时限10s内存限制256MB出题人fotile96提交情况4/43描述给定两个有理式f(X)与g(X),判断他们是否恒等(任意A,如果f(A)与g(A)均有定义,那么f(A)=g(A))。有理式通过他们的中缀表达式给出,为了简化问题,我们对给出的中缀表达式进行如下的规范:该表达式仅包含a-z0-9.+-*/^(),其中a-z用来表示未知数,0-9.用来表示数字常量,+-*/^是运算符,()用来改变运算顺序;所有的运算符(+-*/^)都只作二元运算符使用,包括-;(即是说,-不被当作表示负数的单目运算符使用)所有的运算符(+-*/^)都是左结合的,包括^;(即是说,^不是右... 阅读全文
posted @ 2013-06-26 19:10 jlins 阅读(310) 评论(0) 推荐(0)
上一页 1 ··· 193 194 195 196 197 198 199 200 201 ··· 329 下一页