简记 java工具类(1)

 BeanCopy

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.BeanUtils;
import org.springframework.util.CollectionUtils;

import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.function.Supplier;


public class BeanCopy {

    public static <T> T copy(Object o, Class<T> clazz){
        return copy(o, clazz, (String[]) null);
    }

    public static <T> T copy(Object o, Class<T> clazz, String... ignoreProperties){
        T t = BeanUtils.instantiateClass(clazz);
        BeanUtils.copyProperties(o, t, ignoreProperties);
        return t;
    }

    public static <T1,T2>List<T2>  copyBatch(List<T1> objects, Class<T2> clazz){
        return copyBatch(objects, clazz, (String[]) null);
    }

    public static <T1,T2>List<T2>  copyBatch(List<T1> objects, Class<T2> clazz, String... ignoreProperties){
        if(!CollectionUtils.isEmpty(objects)){
            List<T2> res = new ArrayList<>(objects.size());
            for(Object o : objects){
                res.add(copy(o, clazz, ignoreProperties));
            }
            return res;
        }
        return new ArrayList<>();
    }

    /**
     * Copy properties. 复制对象相同属性的属性值
     *
     * @param source the source
     * @param target the target
     */
    public static <T> void copyProperties(Object source, T target) {
        BeanUtils.copyProperties(source, target);
    }

    /**
     * Copy properties t. 复制对象相同属性的属性值 带返回值
     *
     * @param <T>         the type parameter
     * @param source      the source
     * @param targetClass the target class
     * @return the t
     */
    public static <T> T copyProperties(Object source, Supplier<T> targetClass) {
        final T t = targetClass.get();
        BeanUtils.copyProperties(source, t);
        return t;
    }

    /**
     * Copy properties t. 复制对象相同属性的属性值 可配置回调函数
     *
     * @param <S>               the type parameter
     * @param <T>               the type parameter
     * @param source            the source
     * @param target            the target
     * @param beanUtilsCallBack the bean utils call back
     * @return the t
     */
    public static <S, T> T copyProperties(S source, Supplier<T> target, AsciiBeanUtilsCallBack<S, T> beanUtilsCallBack) {
        final T t = target.get();
        BeanUtils.copyProperties(source, t);
        if (beanUtilsCallBack != null) {
            beanUtilsCallBack.callBack(source, t);
        }
        return t;
    }

    /**
     * Copy not null properties. 复制对象相同属性的属性值 忽略null的属性
     *
     * @param source the source
     * @param target the target
     */
    public static void copyNotNullProperties(Object source, Object target) {
        BeanUtils.copyProperties(source, target, getNullPropertyNames(source));
    }


    /**
     * Copy list properties list. 复制list
     *
     * @param <S>     the type parameter
     * @param <T>     the type parameter
     * @param sources the sources
     * @param target  the target
     * @return the list
     */
    public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target) {
        List<T> targetList = new ArrayList<>(sources.size());
        sources.forEach(source -> {
            final T t = target.get();
            BeanUtils.copyProperties(source, t);
            targetList.add(t);
        });
        return targetList;
    }

    /**
     * Copy list properties list. 复制list 可配置回调函数
     *
     * @param <S>               the type parameter
     * @param <T>               the type parameter
     * @param sources           the sources
     * @param target            the target
     * @param beanUtilsCallBack the bean utils call back
     * @return the list
     */
    public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target, AsciiBeanUtilsCallBack<S, T> beanUtilsCallBack) {
        List<T> targetList = new ArrayList<>(sources.size());
        sources.forEach(source -> {
            final T t = target.get();
            BeanUtils.copyProperties(source, t);
            if (beanUtilsCallBack != null) {
                beanUtilsCallBack.callBack(source, t);
            }
            targetList.add(t);
        });
        return targetList;
    }

    /**
     * Get null property names string [ ].
     *
     * @param source the source
     * @return the string [ ]
     */
    public static String[] getNullPropertyNames(Object source) {
        final PropertyDescriptor[] propertyDescriptors = BeanUtils.getPropertyDescriptors(source.getClass());
        //存放对象中属性值为空的属性名
        final HashSet<String> nullProperty = new HashSet<>();
        Arrays.stream(propertyDescriptors).forEach(propertyDescriptor -> {
            try {
                final Object invoke = propertyDescriptor.getReadMethod().invoke(source);
                if (invoke == null) {
                    nullProperty.add(propertyDescriptor.getName());
                }
            } catch (IllegalAccessException | InvocationTargetException e) {
                throw new RuntimeException(e);
            }
        });
        String[] results = new String[nullProperty.size()];
        return nullProperty.toArray(results);
    }

    /**
     * The interface Ascii bean utils call back.
     *
     * @param <S> the type parameter
     * @param <T> the type parameter
     */
    @FunctionalInterface
    public interface AsciiBeanUtilsCallBack<S, T> {
        /**
         * Call back.
         *
         * @param s the s
         * @param t the t
         */
        void callBack(S s, T t);
    }

    public static <T1, T2> IPage<T2> copyPage(IPage<T1> obj, Class<T2> clazz) {
        if (obj == null) {
            return new Page<>();
        } else {
            IPage<T2> res = new Page<>();
            res.setRecords(copyBatch(obj.getRecords(), clazz));
            res.setTotal(obj.getTotal());
            res.setCurrent(obj.getCurrent());
            res.setSize(obj.getSize());
            return res;
        }
    }

}

 GPSUtil

public class GPSUtil {
    public static double pi = 3.1415926535897932384626;
    public static double x_pi = 3.14159265358979324 * 3000.0 / 180.0;
    public static double a = 6378245.0;
    public static double ee = 0.00669342162296594323;

    public static void main(String[] ages){
        //30.5467950000,104.0774990000
        double[] d =  bd09_To_Gcj02(30.5526405517D,104.0729371656D);
        System.out.println("经纬度==>"+d[0]+"  "+d[1]);
    }

    public static double transformLat(double x, double y) {
        double ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y
                + 0.2 * Math.sqrt(Math.abs(x));
        ret += (20.0 * Math.sin(6.0 * x * pi) + 20.0 * Math.sin(2.0 * x * pi)) * 2.0 / 3.0;
        ret += (20.0 * Math.sin(y * pi) + 40.0 * Math.sin(y / 3.0 * pi)) * 2.0 / 3.0;
        ret += (160.0 * Math.sin(y / 12.0 * pi) + 320 * Math.sin(y * pi / 30.0)) * 2.0 / 3.0;
        return ret;
    }

    public static double transformLon(double x, double y) {
        double ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1
                * Math.sqrt(Math.abs(x));
        ret += (20.0 * Math.sin(6.0 * x * pi) + 20.0 * Math.sin(2.0 * x * pi)) * 2.0 / 3.0;
        ret += (20.0 * Math.sin(x * pi) + 40.0 * Math.sin(x / 3.0 * pi)) * 2.0 / 3.0;
        ret += (150.0 * Math.sin(x / 12.0 * pi) + 300.0 * Math.sin(x / 30.0
                * pi)) * 2.0 / 3.0;
        return ret;
    }

    public static double[] transform(double lat, double lon) {
        if (outOfChina(lat, lon)) {
            return new double[]{lat,lon};
        }
        double dLat = transformLat(lon - 105.0, lat - 35.0);
        double dLon = transformLon(lon - 105.0, lat - 35.0);
        double radLat = lat / 180.0 * pi;
        double magic = Math.sin(radLat);
        magic = 1 - ee * magic * magic;
        double sqrtMagic = Math.sqrt(magic);
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);
        dLon = (dLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi);
        double mgLat = lat + dLat;
        double mgLon = lon + dLon;
        return new double[]{mgLat,mgLon};
    }
    public static boolean outOfChina(double lat, double lon) {
        if (lon < 72.004 || lon > 137.8347)
            return true;
        if (lat < 0.8293 || lat > 55.8271)
            return true;
        return false;
    }
    /**
     * 84 to 火星坐标系 (GCJ-02) World Geodetic System ==> Mars Geodetic System
     *
     * @param lat
     * @param lon
     * @return
     */
    public static double[] gps84_To_Gcj02(double lat, double lon) {
        if (outOfChina(lat, lon)) {
            return new double[]{lat,lon};
        }
        double dLat = transformLat(lon - 105.0, lat - 35.0);
        double dLon = transformLon(lon - 105.0, lat - 35.0);
        double radLat = lat / 180.0 * pi;
        double magic = Math.sin(radLat);
        magic = 1 - ee * magic * magic;
        double sqrtMagic = Math.sqrt(magic);
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);
        dLon = (dLon * 180.0) / (a / sqrtMagic * Math.cos(radLat) * pi);
        double mgLat = lat + dLat;
        double mgLon = lon + dLon;
        return new double[]{mgLat, mgLon};
    }

    /**
     * * 火星坐标系 (GCJ-02) to 84 * * @param lon * @param lat * @return
     * */
    public static double[] gcj02_To_Gps84(double lat, double lon) {
        double[] gps = transform(lat, lon);
        double lontitude = lon * 2 - gps[1];
        double latitude = lat * 2 - gps[0];
        return new double[]{latitude, lontitude};
    }
    /**
     * 火星坐标系 (GCJ-02) 与百度坐标系 (BD-09) 的转换算法 将 GCJ-02 坐标转换成 BD-09 坐标
     *
     * @param lat
     * @param lon
     */
    public static double[] gcj02_To_Bd09(double lat, double lon) {
        double x = lon, y = lat;
        double z = Math.sqrt(x * x + y * y) + 0.00002 * Math.sin(y * x_pi);
        double theta = Math.atan2(y, x) + 0.000003 * Math.cos(x * x_pi);
        double tempLon = z * Math.cos(theta) + 0.0065;
        double tempLat = z * Math.sin(theta) + 0.006;
        double[] gps = {tempLat,tempLon};
        return gps;
    }

    /**
     * * 火星坐标系 (GCJ-02) 与百度坐标系 (BD-09) 的转换算法 * * 将 BD-09 坐标转换成GCJ-02 坐标 * * @param
     * bd_lat * @param bd_lon * @return
     */
    public static double[] bd09_To_Gcj02(double lat, double lon) {
        double x = lon - 0.0065, y = lat - 0.006;
        double z = Math.sqrt(x * x + y * y) - 0.00002 * Math.sin(y * x_pi);
        double theta = Math.atan2(y, x) - 0.000003 * Math.cos(x * x_pi);
        double tempLon = z * Math.cos(theta);
        double tempLat = z * Math.sin(theta);
        double[] gps = {tempLat,tempLon};
        return gps;
    }

    /**将gps84转为bd09
     * @param lat
     * @param lon
     * @return
     */
    public static double[] gps84_To_bd09(double lat,double lon){
        double[] gcj02 = gps84_To_Gcj02(lat,lon);
        double[] bd09 = gcj02_To_Bd09(gcj02[0],gcj02[1]);
        return bd09;
    }
    public static double[] bd09_To_gps84(double lat,double lon){
        double[] gcj02 = bd09_To_Gcj02(lat, lon);
        double[] gps84 = gcj02_To_Gps84(gcj02[0], gcj02[1]);
        //保留小数点后六位
        gps84[0] = retain6(gps84[0]);
        gps84[1] = retain6(gps84[1]);
        return gps84;
    }

    /**保留小数点后六位
     * @param num
     * @return
     */
    private static double retain6(double num){
        String result = String .format("%.6f", num);
        return Double.valueOf(result);
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值