码迷,mamicode.com
首页 >  
搜索关键字:out range of signed 32bit displacement    ( 47132个结果
Java输入数据流
@Test public void test() throws Exception{ //创建输入数据流对象 InputStream In=new FileInputStream("HellWord.txt"); try { //System.out.print((ch...
分类:编程语言   时间:2014-06-18 21:39:04    阅读次数:226
Java数据流之File
@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
java 输出流
//输出流 @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
ffmpeg avfilter_graph_parse_ptr 返回 -2
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++]读写文件
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
Learn ZYNC (5)
今天为了熟悉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替换字符串和用indexof查找字符
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
L6.Flexbox 伸缩盒模型
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
java-第十三章-类的无参方法(一)-查找客户姓名
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!