weishijie-develop

所属分类:大数据
开发工具:Java
文件大小:43392KB
下载次数:0
上传日期:2022-04-01 16:53:07
上 传 者sh-1993
说明:  集视频,图片和文章的娱乐app,数据来源于优酷,暴走tv,全球动画精选以及其他网站。本项目纯属个人练习项目,如有侵犯版权问题,请通知。本人立即删除。apk和截图在项目中均可下载,欢迎大家给我建议,QQ群:256484649
(An entertainment app that collects videos, pictures and articles, with data from Youku, Rage TV, Global Animation Collection and other websites. This project is purely a personal exercise project. Please inform us if there is any copyright infringement. I will delete it now. Both apk and screenshots can be downloaded in the project. Welcome to give me suggestions. QQ group: 256484649)

文件列表:
Srceenshot (0, 2022-04-02)
Srceenshot\1648831908015528.mp4 (7789914, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-35-39.jpeg (579669, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-35-59.jpeg (1045664, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-36-15.jpeg (630754, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-36-27.jpeg (630395, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-37-07.jpeg (971200, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-37-29.jpeg (504555, 2022-04-02)
Srceenshot\Screenshot_2016-01-26-14-37-43.jpeg (287041, 2022-04-02)
Srceenshot\app-debug.apk (10908805, 2022-04-02)
app (0, 2022-04-02)
app\app-release-v4.4.6-c446.apk (13928188, 2022-04-02)
app\build.gradle (3470, 2022-04-02)
app\libs (0, 2022-04-02)
app\libs\SocialSDK_QQZone_3.jar (47693, 2022-04-02)
app\libs\SocialSDK_Sina.jar (27908, 2022-04-02)
app\libs\SocialSDK_WeiXin_1.jar (149240, 2022-04-02)
app\libs\SocialSDK_WeiXin_2.jar (27736, 2022-04-02)
app\libs\SocialSDK_tencentWB_1.jar (51034, 2022-04-02)
app\libs\SocialSDK_tencentWB_2.jar (105910, 2022-04-02)
app\libs\SocialSDK_tencentWB_3.jar (10345, 2022-04-02)
app\libs\avoscloud-sdk-v3.12.jar (366964, 2022-04-02)
app\libs\cyberplayer-sdk.jar (402766, 2022-04-02)
app\libs\fastjson.jar (360876, 2022-04-02)
app\libs\httpmime-4.2.4.jar (26481, 2022-04-02)
app\libs\jsoup-1.8.3.jar (315321, 2022-04-02)
app\libs\mta-sdk-1.6.2.jar (76732, 2022-04-02)
app\libs\open_sdk_r5509.jar (526609, 2022-04-02)
app\libs\umeng-analytics-v5.6.4.jar (382175, 2022-04-02)
app\libs\umeng-update-v2.6.0.1.jar (105374, 2022-04-02)
app\libs\umeng_social_sdk.jar (229237, 2022-04-02)
app\libs\weiboSDKCore_3.1.2.jar (394574, 2022-04-02)
app\proguard-rules.pro (655, 2022-04-02)
app\src (0, 2022-04-02)
app\src\main (0, 2022-04-02)
app\src\main\AndroidManifest.xml (6901, 2022-04-02)
... ...

#Preview ##Demo You can click here to [download apk .](https://github.com/panjichang/weishijie-develop/blob/master/app/app-release-v4.4.6-c446.apk?raw=true) ##Screenshots ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-35-39.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-35-59.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-36-15.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-36-27.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-37-07.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-37-29.jpeg) ![Image](https://raw.githubusercontent.com/panjichang/weishijie-develop/master/Srceenshot/Screenshot_2016-01-26-14-37-43.jpeg) public static class Room implements Cloneable{ public String roomNo; //房间号 public List eqTvs;//同房间TV public String targetTv; //目标TV public List neTvs;//不同房间TV public int volume; //音量 @Override protected Room clone() throws CloneNotSupportedException { return (Room) super.clone(); } } public static void main(String[] args) { Map> eqTvMap=new HashMap<>(); List eqTV1=new ArrayList<>(); eqTV1.add("TV1"); eqTvMap.put("卧室1-1",eqTV1); List eqTV2=new ArrayList<>(); eqTV2.add("TV1"); eqTV2.add("TV2"); eqTvMap.put("卧室1-2",eqTV2); System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(eqTvMap)); Map> neTvMap=new HashMap<>(); List neTV1=new ArrayList<>(); neTV1.add("TV2"); neTvMap.put("卧室1-1",eqTV1); List neTV2=new ArrayList<>(); neTV2.add("TV3"); neTvMap.put("卧室1-2",neTV2); System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(neTvMap)); //合并数据 List merge = merge(eqTvMap, neTvMap); System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(merge)); //克隆数据 List rooms1 = handleRoom(merge); System.out.println(com.alibaba.fastjson.JSONObject.toJSONString(rooms1)); } public static List merge(Map> eqTvMap,Map> neTvMap){ List roomList=new ArrayList<>(); for (String key:eqTvMap.keySet()){ List neTv = neTvMap.get(key); List eqTvs = eqTvMap.get(key); for (String tv:eqTvs){ Room room=new Room(); room.roomNo=key; room.targetTv=tv; room.neTvs=neTv; room.eqTvs=eqTvs; roomList.add(room); } } return roomList; } public static List handleRoom(List rooms){ List handleRooms=new ArrayList<>(); for (Room room:rooms){ handleRooms.add(room); for (int i=0;i<4;i++){ try { Room clone = room.clone(); handleRooms.add(clone); } catch (CloneNotSupportedException e) { e.printStackTrace(); } } } return handleRooms; }

近期下载者

相关文件


收藏者