摘要:
在字段前面加这个注解:@Transient 阅读全文
摘要:
可能的原因:①该注解类中的注解出错:例如是否因为属性名与数据库关键字冲突②是否添加包扫描配置:配置在sessionFactory的bean里面。 阅读全文
摘要:
比如你映射了一个名称为key的属性,这是数据库所不允许的,因为它是数据库的关键字。因此,你必须为此属性添加一对符号,即键盘上“1”键的左边的按键。 阅读全文
摘要:
请看下面一个很简单的Actionpackage com.ahgw.main.action;import org.springframework.stereotype.Controller;/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-11-19 * Time: 下午7:08 * To change this template use File | Settings | File Templates. */@Controllerpublic class Test2Action { private String hyy; ... 阅读全文
摘要:
Activity1:: Intent intent= new Intent(this, OtherActivity.class); String name = "heyiyong"; intent.putExtra("name", name); startActivity(intent);OtherActivity: Intent intent = getIntent();//获取调用者的意图 String name = intent.getStringExtra("name"); System.... 阅读全文
摘要:
AndroidManifest.xml对于被调用的activity: 对于调用者activity:(创建意图,该意图必须跟xml配置信息相同) Intent intent = new Intent(); intent.setAction("www.wuyou.open"); intent.addCategory("android.intent.category.DEFAULT"); ... 阅读全文
摘要:
Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); intent.setData(Uri.parse("http://www.baidu.com/")); startActivity(intent); 阅读全文
摘要:
ConnectivityManager cwjManager=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo info = cwjManager.getActiveNetworkInfo(); if (info != null && info.isAvailable()){ //do nothing } else{Toast.makeText(MainActivity.this,"无互联网连接",Toast.LENGTH_SHORT).show( 阅读全文
摘要:
方法一: Intent intent = new Intent(); intent.setClassName(this, "com.wuyou.twoactivity.OtherActivity"); startActivity(intent);方法二:(使用了类字节码文件,将方法一运行时的错误转移到编译时错误) Intent intent = new Intent(this, OtherActivity.class); startActivity(intent);可见方法二比方法一好。 阅读全文
摘要:
特征:根据URL地址装载图像;支持装载通讯录中的图像;支持异步装载;支持缓存;这个是作者的项目主页,有使用方法。http://loopj.com/android-smart-image-view/下载作者的jar包导入项目后,在xml中加入控件代码里找到该控件SmartImageView myImage = (SmartImageView) this.findViewById(R.id.my_image);使用控件通过url加载图片myImage.setImageUrl("http://www.awesomeimages.com/myawesomeimage.jpg"); 阅读全文