码迷,mamicode.com
首页 > 2016年01月11日 > 全部分享
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined ;At least one of these environment variable is needed to run this program
linux下,关闭和重启tomcat时报错:Neither the JAVA_HOME nor the JRE_HOME environment variable is definedAt least one of these environment variable is needed to ru...
分类:编程语言   时间:2016-01-11 15:13:57    阅读次数:279
加速Android Studio/Gradle构建
gradle构建过慢?项目运行过慢?下面链接有解决办法http://blog.isming.me/2015/03/18/android-build-speed-up/http://www.360doc.com/content/15/0210/18/2961363_447740782.shtml
分类:移动开发   时间:2016-01-11 15:15:04    阅读次数:134
linux之shell脚本学习篇一
此文包含脚本服务请求,字符串截取,文件读写内容。#!/bin/bashretMsg="";while read LINEdo echo "this is text: $LINE"; retMsg=`/usr/bin/curl -o test3.log -w %{http_code}"\\n" $LI...
分类:系统相关   时间:2016-01-11 15:13:08    阅读次数:199
Html5添加移动手机和桌面设备使用的模块化JavaScript图片画廊插件教程
分类:其他好文   时间:2016-01-11 15:12:13    阅读次数:189
STM8S---IO复用配置(STVP方式)
1 说明STM8S的IO复用用程序代码配置起来比較麻烦。通常是操作flash来操作option byte字节。配置寄存器更加麻烦,能够使用STM 标准外设驱动库来设置。本文使用一种界面配置的方式来配置IO复用管脚,即使用STVP来配置。 由于FLASH保存的数据是掉电不丢失的,先用S...
分类:其他好文   时间:2016-01-11 15:15:11    阅读次数:4921
[Linux笔记]杀死僵尸程序
A zombie is already dead, so you cannot kill it. To clean up a zombie, it must be waited on by its parent, so killing the parent should work to elimin...
分类:系统相关   时间:2016-01-11 15:14:01    阅读次数:251
三层 增删改查 分页 泛型基类
1 /// 2 /// DAL基类 3 /// 4 /// 5 public abstract class BaseDAL where T : class, new() 6 { 7 /// 8 /...
分类:其他好文   时间:2016-01-11 15:13:28    阅读次数:157
浏览器的工作原理(转)
简介网络浏览器很可能是使用最广的软件。在这篇入门文章中,我将会介绍它们的幕后工作原理。我们会了解到,从您在地址栏输入google.com直到您在浏览器屏幕上看到 Google 首页的整个过程中都发生了些什么。目录简介我们要讨论的浏览器浏览器的主要功能浏览器的高层结构呈现引擎呈现引擎主流程主流程示例解...
分类:其他好文   时间:2016-01-11 15:13:29    阅读次数:287
如何使用 SPICE client (virt-viewer) 来连接远程虚拟机桌面?
如何使用 SPICE client (virt-viewer) 来连接远程虚拟机桌面?什么是SPICE?SPICE (Simple Protocol for Independent Computing Environments) 是一个用于虚拟化环境中的通讯协议。此协议透过因特网来连结到虚拟化平台上...
分类:其他好文   时间:2016-01-11 15:13:18    阅读次数:9142
手游渠道越来越开放,CP应选择有价值渠道
分类:移动开发   时间:2016-01-11 14:31:43    阅读次数:159
负载均衡之基于L7负载
L7负载平衡    另一种较为常用的负载平衡解决方案则是L7负载平衡。顾名思义,其主要通过OSI模型中的第七层应用层中的数据决定如何分发负载。    在运行时,L7负载平衡服务器上的操作系统会将接收到的各个数据包组织成为用户请求,并根据在该请求中所包含的的数据来决定由哪个服务实例来对该请求进行处理。其运行流程图大致如下所示: 相较于L3/4负载平衡服务所使用的数据,L7负载平衡服务所...
分类:其他好文   时间:2016-01-11 14:07:22    阅读次数:197
LeetCode 100 Same Tree(相同树判断)(二叉树、递归、栈和队列、深搜和宽搜)
翻译给定两个二叉树,写一个函数检查他们是否相等。两个二叉树如果结构上相同并且有相同的值,那么就认定他们是相等的。原文Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally ident...
分类:其他好文   时间:2016-01-11 14:07:08    阅读次数:135
OC考核测试题
#import #define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String])int main(int argc, const char * argv[...
分类:其他好文   时间:2016-01-11 14:06:48    阅读次数:133
查询单词里面包含“ang”的字符串
NSArray *array = [[NSArray alloc]initWithObjects:@"beijing",@"shanghai",@"guangzou",@"wuhan", nil]; NSString *string = @"ang"; NSPredicate *pred...
分类:其他好文   时间:2016-01-11 14:07:05    阅读次数:190
linux挂载U盘,及乱码问题解决
1. 首先使用切换到root用户。2. 使用fdisk -l命令查看磁盘信息,找到u盘(能够依据显示的大小确定)3. 在/mnt下创建挂载点,比如创建usb目录:mkdir /mnt/usb4. 使用mount挂载u盘,比如运行:mount /dev/sdb /mnt/usb5. 有时候载入出来的u...
分类:系统相关   时间:2016-01-11 14:06:58    阅读次数:207
Jan 10 - Reverse Linked List;Data Structure; Linked List; Pointer; Iteration & Recursion
Iteration:代码:/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; }...
分类:其他好文   时间:2016-01-11 14:06:22    阅读次数:94
责任链模式 c#
就是你找政府部门办事,需要层层审批,求情一层层的传递直到有权利的人通过审批为止。using System;using System.Collections;using System.Collections.Generic;using System.Linq;namespace ConsoleAp.....
分类:Windows程序   时间:2016-01-11 14:06:44    阅读次数:186
1170条   上一页 1 ... 36 37 38 39 40 41 42 ... 69 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!