1、Intent intent = new
Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*");
intent.putExtra("crop", true); in...
分类:
其他好文 时间:
2014-05-26 12:00:15
阅读次数:
230
在jsf1使用 taglib 定义 标签出现The absolute uri:
http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar
files deployed with this applicat...
分类:
Web程序 时间:
2014-05-26 11:48:20
阅读次数:
327
Attribute:$(”p”).addClass(css中定义的样式类型);
给某个元素添加样式$(”img”).attr({src:”test.jpg”,alt:”test Image”});
给某个元素添加属性/值,参数是map$(”img”).attr(”src”,”test.jpg”); ...
分类:
Web程序 时间:
2014-05-26 07:55:20
阅读次数:
409
核心概念(Core concepts)在iOS上面常见的动画以及交互包括以下几种:? Core
Animation? UIView animations? Motion effects? Gesture driven interactions?
CADisplayLink那么UIKit Dynami...
分类:
其他好文 时间:
2014-05-26 07:11:39
阅读次数:
313
【题目】
You are given an n x n 2D matrix representing an image.
Rotate the image by 90 degrees (clockwise).
Follow up:
Could you do this in-place?
【题意】
给定一个nXn的二维矩阵,按时钟方向旋转90度,不能使用额外的数据结构
【思路】
从外向内逐层旋转...
分类:
其他好文 时间:
2014-05-26 05:50:25
阅读次数:
266
图像的输入输出
C风格的操作:
const char *pstrImageName = "秽土转生第七版.jpg";
const char *pstrWindowsTitle = "窗口标题";
//从文件中读取图像
IplImage *pImage = cvLoadImage(pstrImageName, CV_LOAD_IMAGE_UNCHANGED);
//创建窗口
cvN...
分类:
其他好文 时间:
2014-05-26 03:47:36
阅读次数:
296
点击browserFilesystem,和命令查看结果一样
当我们查看hadoop源码时,我们看到hdfs下的hdfs-default.xml文件信息
我们查找${hadoop.tmp.dir}这是引用变量,肯定在其他文件有定义,在core-default.xml中查看到,这两个配置文件有个共同点:
就是不要修改此文件,但可以复制信息到core-site.xml和hdfs-sit...
分类:
Web程序 时间:
2014-05-25 02:02:13
阅读次数:
388
1、 先在/工程名/WebRoot/WEB-INF/lib/struts2-core-2.1.8.jar中找到struts-2.1.dtd文件。
2、 在Myeclipse8.6——》Window——》Preferences
3、 在搜索框输入xml文件,找到XMLCatalog,单击XML Catalog出现如上页面,之后单击Add按钮,出现如下图:...
分类:
其他好文 时间:
2014-05-24 23:46:52
阅读次数:
471
因为网页上还有其他内容,所以header("Content-type:image/jpeg");
位置已经被占用,验证码不能出现了,就会出现图像“http://localhost/**.php”因其本身有错,无法显示”那么,解决这个问题的最简单的办法就是,直接删除header("Content-ty...
分类:
Web程序 时间:
2014-05-24 10:29:56
阅读次数:
308
public Image GetImage(string path) { FileStream fs
= new FileStream(path, FileMode.Open, FileAccess.Read); Image ...
分类:
其他好文 时间:
2014-05-24 09:48:26
阅读次数:
233