按照https://pypi.python.org/pypi/setuptools#windows-8-powershell介绍的方法,
安装未成功。安装似乎没有启动, 也未安装成功。Windows 8 (Powershell)For best results, uninstall
previous...
分类:
编程语言 时间:
2014-05-12 14:10:29
阅读次数:
433
<?php
function replace_url ($content) {
if (empty($content)) return;
//给URL地址加上 链接
$preg = '/(?:http:\/\/)?([\w.]+[\w\/]*\.[\w.]+[\w\/]*\??[\w=\&\+\%]*)/is';
$content = preg_replace($preg, '\1',...
分类:
其他好文 时间:
2014-05-12 07:17:12
阅读次数:
316
自己写的一段://goolchar* str_replace(char* source,
const char* find, const char* replace){ if (source == NULL || find == NULL ||
find == "") return strdup.....
分类:
其他好文 时间:
2014-05-12 02:42:20
阅读次数:
418
5.流程或诊断信息输出,错误以及异常处理
在使用PowerShell的过程中,如果cmdlet执行有输出结果,我们会在PS界面看到结果输出信息。如果cmdlet执行出现异常,那我们就会看到异常信息。接着我们就开始学习这些输出信息的实现。
Cmdlet基类给我们提供了几种输出方法:Write...
分类:
其他好文 时间:
2014-05-12 01:15:15
阅读次数:
321
之前的内容主要是关于cmdlet开发的,下面要将的内容,是关于在应用程序中集成PowerShell引擎。
运行空间和管道
Runspace类是PowerShell引擎API的重要组成部分,Runspace实例代表一个PowerShell执行引擎实例,其中包含自己的一系列变量,驱动器映射,...
分类:
其他好文 时间:
2014-05-11 23:04:46
阅读次数:
432
复制文件(上传至共享文件夹)功能:复制文件。也可以指定是否覆盖同名的目标文件。语法:FileCopy ( sourcefile , targetfile {,
replace})参数:sourcefile:string 类型,指定要复制文件的名称(源文件名称);targetfile:string 类...
分类:
其他好文 时间:
2014-05-10 18:30:18
阅读次数:
390
根据页面选择的答案进行编辑答案集合,没有的添加有的修改,在最后提交时获得结果集插入到数据库中
分类:
Web程序 时间:
2014-05-10 06:35:22
阅读次数:
453
With the shortage of natural sand resources
increasingly tense, artificial sand began to increasingly replace natural sand
for the construction of the...
分类:
其他好文 时间:
2014-05-09 12:57:36
阅读次数:
272
Windows
Powershell和cmdlet的学习是一个积累的过程。最近在学习编写自定义的Cmdlet封装一些命令,以此记录自己的学习心得。
自定义cmdlet的实现大致可以分为以下几步: 1.将.Net类声明为cmdlet 2.继承自类PSCmdlet或者Cmdlet ...
分类:
其他好文 时间:
2014-05-09 07:37:19
阅读次数:
296
1需求:
点击下面不同的item,会改变上面select旁边的图标,如何实现?
2 解决办法:
改变应用的logo
3 具体步骤:
3.1 监听左边这个litview的item点击事件(注,这些items 是放在一个listview中的,所以你可以自定义他的显示样式)
3.2 在点检事件触发的时候,replace进入响应的fragment到 frameLayout
3.3 同时改变l...
分类:
其他好文 时间:
2014-05-08 17:19:04
阅读次数:
324