1.安装jprofiler_linux_8_0_2.sh
chmod+x jprofiler_linux_8_0_2.sh
./jprofiler_linux_8_0_2.sh –c
安装过程略。。几乎Enter到底(也可在图形界面下安装不加-c选项,则为图形安装)
2.编辑/etc/profile
exportLD_LIBRARY_PATH=/opt/jprofiler...
分类:
系统相关 时间:
2014-06-07 01:29:39
阅读次数:
472
[lvhongmin@AY1401201736089361adZ start_svr]$ cat startall_svr.sh
#!/bin/bash
errpath[0]=''
errnum=0
runnum=0
curr_path=`pwd`
#进程的名字
array[${#array[*]}]=/home/lvhongmin/bin/bin....
分类:
其他好文 时间:
2014-06-05 11:11:43
阅读次数:
243
数据库常用命令
1.添加需要路径:PATH="$PATH":/usr/local/mysql/bin 2.登陆数据库系统:mysql -h localhost -u root
-p 3.创建数据库:CREATE DATABASE 数据库名 4.显示数据库:SHOW DATABASES...
分类:
数据库 时间:
2014-06-03 08:04:39
阅读次数:
317
今天在使用ffmpeg时出现了Operation not
permitted通过增加打印信息发现是在av_interleaved_write_frame出现的问题,昨天还没出现这个问题,很奇怪,就把昨天的拿过来试还是一样,最后发现时少加了O_CREAT昨天没事是因为之前那个文件存在,Linux基础太...
分类:
其他好文 时间:
2014-06-03 07:11:24
阅读次数:
380
闭包是指有权访问另一个函数作用域中的变量的函数。 这里随意写个最简单的小例子: 1
//这是闭包的一个基本例子 2 3 function outter( ){ 4 5 var temp = 0; //不加var则是全局变量! 6 7
function inner( ...
分类:
Web程序 时间:
2014-05-31 13:57:56
阅读次数:
282
解决方案1:查看文件路径拼写方式,如果是用“+”拼接的,请改用System.IO.Path.Combine()方式拼接。经过测试,两种拼接方式打印出来的路径是一样的,但为什么
加号 的方式拼接unity不识别,原因未知。希望知道 原因的大神回帖。
分类:
其他好文 时间:
2014-05-31 11:56:10
阅读次数:
472
WPF的XAML提供了一系列功能强大、用法复杂的 mini-language
来描述可扩展应用程序标记语言 (XAML) 中的几何路径。如下所示: XAML Command Name Description F i FillRule
i=0:EvenOdd. i=1:NonZero. M x y M...
分类:
其他好文 时间:
2014-05-31 05:04:37
阅读次数:
289
Floyd。注意字典序!!! 1 #include 2 #include 3 4
#define MAXNUM 55 5 #define INF 0x1fffffff 6 7 int cost[MAXNUM][MAXNUM]; 8 int
path[MAXNUM][MAXNUM]; 9 in...
分类:
其他好文 时间:
2014-05-31 04:41:38
阅读次数:
218
Given a triangle, find the minimum path sum
from top to bottom. Each step you may move to adjacent numbers on the row
below.For example, given the fol...
分类:
其他好文 时间:
2014-05-30 14:59:37
阅读次数:
241
离线安装:1.下载插件包:http://pan.baidu.com/s/1c0cRHsO2.解压到:D:\downloads\m2eclipse3.在eclipse的dropins目录下,新建maven.link文件4.编辑maven.link,指向插件位置:path=D:/downloads/m2...
分类:
系统相关 时间:
2014-05-30 14:52:45
阅读次数:
304