@Test public void test() throws Exception{ //创建输入数据流对象 InputStream In=new FileInputStream("HellWord.txt"); try { //System.out.print((ch...
分类:
编程语言 时间:
2014-06-18 21:39:04
阅读次数:
226
@Test public void fileTest() { //创建File 对象 File file=new File("hell.txt"); //获取文件名 System.out.println(file.getName()); //访问文件的绝对路径 System.out.p...
分类:
编程语言 时间:
2014-06-18 21:22:15
阅读次数:
296
//输出流 @Test public void testOutStream() throws Exception{ OutputStream out =new FileOutputStream("abc.txt"); String content="hello word/nwww.baidu.c.....
分类:
编程语言 时间:
2014-06-18 21:16:47
阅读次数:
280
sprintf(vFilter->szOverLay,"movie=%s[wm];[in][wm]overlay=%d:%d[out]",szOverlay,x,y);当szOverlay = “d:\\xxx\xxx.png”; 时返回-2,貌似ffmpeg处理不了路径中的冒号。。。用当前路径下的...
分类:
其他好文 时间:
2014-06-18 19:04:31
阅读次数:
1066
C++对文件处理没有shell等脚本语言方便,但也不是无计可施。#include #include #include #include using namespace std;int main(){ ifstream in("a.txt"); ofstream out("b.txt"); if(!i...
分类:
编程语言 时间:
2014-06-18 18:27:39
阅读次数:
231
今天为了熟悉axiLite的自定义ip核设计, 把LED和SW的往AXI总线输入输出定义在一个ip核中, BD设计如下: ip核顶层文件(增加了LED_Out和SW_In的定义)mygpio_v1.0.v: module mygpio_v1_0 # ( // Users to add paramet...
分类:
其他好文 时间:
2014-06-18 17:36:35
阅读次数:
299
java自带替换String s="hlz_and_hourui哈哈"; String new_S=s.replaceAll("哈", "笑毛"); System.out.println(new_S);则输出为:"hlz_and_hourui笑毛笑毛"; 1 package find_repal.....
分类:
编程语言 时间:
2014-06-18 15:58:49
阅读次数:
264
http://www.w3.org/TR/2014/WD-css-flexbox-1-20140325/1IntroductionCCS2.1中规定了四种布局模式:block layout, designed for laying out documentsinline layout, design...
分类:
其他好文 时间:
2014-06-18 15:33:32
阅读次数:
308
package上机练习;
publicclassA02class{
Stringnames[]=newString[30];
publicvoidshowA(Stringname){
for(inti=0;i<names.length;i++){
if(names[i]==null){
names[i]=name;
break;
}
}
}
publicvoidshowB(){
System.out.println("\t客户列表显..
分类:
编程语言 时间:
2014-06-16 15:26:12
阅读次数:
287
publicclassTest
{
publicstaticvoidmain(String[]args)throwsException{
Childrenc=newChildren();
c.show();
}
}
classParent
{
publicvoidshow(){
stepOne();
stepTwo();
}
voidstepOne(){
System.out.println("parent.stepOne()");
}
voidstepTwo(){
/..
分类:
其他好文 时间:
2014-06-16 15:12:59
阅读次数:
178