package common; import java.util.ArrayList; import java.util.List; public class DataZh { public static List<String> ObjecttoString(List<Object> o) { List<String> x = new ArrayList<String>(); for(Object oj: o){ x.add(oj.toString());…
在使用laravel 5.1权限管理,使用 安装 zizaco/entrust 5.2.x-dev的时候执行 php artisan entrust:migration的时候报以下错误: [Symfony\Component\Debug\Exception\FatalErrorException] Class name must be a valid object or a string 解决办法: \vendor\zizaco\entrust\src\commands\Migration…
public static class WebExtension { public static T Decode<T>(this RequestBase res) { Type type = res.GetType(); // For each property of this object, html decode it if it is of type string foreach (PropertyInfo propertyInfo in type.GetProperties()) {…
String转int String str = "123"; int a = Integer.parseInt(str); System.out.println(a); Integer b = Integer.valueOf(str); System.out.println(b); int c = Integer.valueOf(str).intValue(); System.out.println(c); int转化为String int i = 123; String s = St…