码迷,mamicode.com
首页 >  
搜索关键字:ted    ( 12016个结果
ios 上传图片base64 demo
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{ //1.获取当前选中相册的照片 UII ...
分类:移动开发   时间:2016-11-23 12:53:36    阅读次数:205
A cycle was detected in the build path of project
解决Eclipse中Java工程间循环引用而报错的问题 如果我们的项目包含多个工程,而它们之间又是循环引用的关系,那么Eclipse在编译时会抛出如下一个错误信息: “A cycle was detected in the build path of project: XXX” 解决方法非常简单: ...
分类:其他好文   时间:2016-11-23 12:46:17    阅读次数:135
Leetcode: House Robber III
https://discuss.leetcode.com/topic/39834/step-by-step-tackling-of-the-problem rob(root) which will return the maximum amount of money that we can rob ...
分类:其他好文   时间:2016-11-23 12:41:31    阅读次数:237
套接字
建立链接流程 客户端:Socket socket1=new Socket("http://192.168.0.78",2016) 前面的是服务器的ip地址,为了方便测试192.168.0.78即代表自己本机就是服务器,后面的服务器端口号,正常要使用1024~65535端口号 服务器端:ServerS ...
分类:其他好文   时间:2016-11-23 11:59:11    阅读次数:106
酷狗音乐展示滚动歌词效果的控件实现
文章来自http://blog.csdn.net/zhaodecang 在音乐播放器项目中使用到酷狗音乐展示歌词的效果,需要支持修改字体、颜色、渐变色等功能 截图如下(效果不是很好,请下载Demo查看) 歌词绘制流程核心代码如下(具体实现过程请看Github源码) ...
分类:其他好文   时间:2016-11-23 07:31:56    阅读次数:412
error: Your local changes to the following files would be overwritten by checkout:
在发布这个配置文件的时候,会发生代码冲突: error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, commit your cha ...
分类:Windows程序   时间:2016-11-23 06:55:33    阅读次数:937
python常见的特异点
一定注意,Python中没有{}包含的程序段,只用tab来分隔,否则就是语法错误。 if (a == b): print 1 else: print 2 条件语句 if Python程序语言指定任何非0和非空(null)值为true,0 或者 null为false。 Python 编程中 if 语句 ...
分类:编程语言   时间:2016-11-22 22:35:53    阅读次数:207
去除字符串中的空格
1、去除字符串的前导、尾部空格 str.trim() 2、去除字符串中的所有空格 a、StringTokenizer() b、replaceAll()方法 该方法是将空格" "用""替换,以达到去除字符串中空格的目的, str.replaceAll(String regex,String repla ...
分类:其他好文   时间:2016-11-22 17:16:26    阅读次数:176
break控制流语句
break用语循环当中,用语跳出整个循环,执行循环体后面的语句; continue用语跳出本次循环,或当前循环。继续下一次循环。 /** * break用于循环控制流语句当中,跳出整个循环。 *@author javawg *@verison 2016-11-22 * */public class ...
分类:其他好文   时间:2016-11-22 16:54:54    阅读次数:118
centos7作为web服务器优化
centos7作为web服务器优化 原文 http://itindex.net/detail/51140-centos7-web-服务器 1、加大打开文件数的限制(open files) 查看 ulimit -nulimit -a vi /etc/security/limits.conf最后添加 * ...
分类:Web程序   时间:2016-11-22 15:00:45    阅读次数:193
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!