全部博文(1293)
发布时间:2014-12-24 09:22:13
Java中Object转化为int类型 页面间通过application 传值弄了半天 application.getAttribute("coursecredit")返回的是一个object 类型Java中由Object类型转化为int类型时,不能直接转化,先是将Object类型转化成String类型,然后将String类型转化为int类型!Object value=null;Integer.parseI.........【阅读全文】
发布时间:2014-12-23 11:49:53
读取固定文件夹中文件,本方法不适合文件夹中还有文件夹的情况。String fileDirPath = 具体路径; File root = new File(fileDirPath); &nbs.........【阅读全文】
发布时间:2014-12-23 10:19:52
JAVA:int lastIndex = subPath.lastIndexOf("/");C#:fileNameList[i].Substring(fileNameList[i].LastIndexOf('/') + 1);string fileName = pictureBox1.ImageLocation.Substring(pictureBox1.ImageLocation.LastIndexOf("\\") + 1);用法是一样的。这里需要注意的是,正斜杠和反斜杠在作SubString截断符时的写法:.........【阅读全文】
发布时间:2014-12-22 15:15:51
import android.app.AlertDialog;import android.content.DialogInterface;private void showMessage(String string) { new AlertDialog.Builder(mConte.........【阅读全文】
发布时间:2014-12-19 16:55:43
使用adpater与listview捆绑后,有时希望在程序使用过程中能动态的更改listview中显示的数据,如何处理? 一、关键代码段 private ListView mListView; private Button mBtnChange; private android.view.View.OnClickListener mCancelClick; .........【阅读全文】