├── .gitattributes ├── .gitignore ├── README.md ├── RemoteControll ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ ├── android-support-v4.jar.properties │ ├── xUtils-2.6.9.jar │ └── xUtils-2.6.9.jar.properties ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png │ │ ├── btn_keyboard_key.xml │ │ ├── disk.png │ │ ├── download_file.png │ │ ├── file.png │ │ ├── file_down.png │ │ ├── file_folder.png │ │ ├── file_icon_mp3.png │ │ ├── file_icon_office.png │ │ ├── file_icon_pdf.png │ │ ├── file_icon_picture.png │ │ ├── file_icon_rar.png │ │ ├── file_icon_txt.png │ │ ├── file_icon_video.png │ │ ├── file_upload.png │ │ ├── file_upload_btn.png │ │ ├── folder.png │ │ ├── ic_action_overflow.png │ │ ├── ic_launcher.png │ │ ├── keyboard_backspace.png │ │ ├── login_button.9.png │ │ ├── login_button_press.9.png │ │ ├── logo.png │ │ ├── normal_key_bg.9.png │ │ ├── normal_key_hl_bg.9.png │ │ ├── pc_power_off.png │ │ ├── pc_power_off_canel.png │ │ ├── sym_keyboard_delete.png │ │ ├── sym_keyboard_done.png │ │ ├── sym_keyboard_left.PNG │ │ ├── sym_keyboard_right.PNG │ │ ├── sym_keyboard_search.png │ │ ├── sym_keyboard_shift.png │ │ ├── sym_keyboard_space.png │ │ ├── title_bar.9.png │ │ ├── up_level.png │ │ ├── up_level_pressed.png │ │ └── windows.jpg │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ ├── list_item_textcolor_style.xml │ │ ├── login_btn_selector.xml │ │ ├── slidingmenu_shadow.xml │ │ └── up_back_button.xml │ ├── layout │ │ ├── behind_sliding_menu.xml │ │ ├── center_fragment.xml │ │ ├── control_mouse_activity.xml │ │ ├── disk_list_item.xml │ │ ├── download_activity.xml │ │ ├── file_list_item.xml │ │ ├── ip_set_layout.xml │ │ ├── keypad_layout.xml │ │ ├── local_file_dialog.xml │ │ ├── local_file_list_item.xml │ │ ├── main_layout.xml │ │ ├── pc_power_off_activity.xml │ │ ├── slidingmenumain.xml │ │ └── upload_activity.xml │ ├── menu │ │ └── actions.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── sliding_dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── xml │ │ └── qwerty.xml └── src │ └── com │ └── devil │ └── remotecontroll │ ├── BaseActivity.java │ ├── BaseApplication.java │ ├── BaseFragmetActivity.java │ ├── DownLoadActivty.java │ ├── IPsetActivity.java │ ├── KeyPadActivity.java │ ├── MouseControllActivity.java │ ├── PhoneFileDialogActivity.java │ ├── RemoteMainActivity.java │ ├── ShutDownActivity.java │ ├── UploadActivity.java │ ├── adapter │ ├── DiskAdapter.java │ ├── FileAdapter.java │ └── PhoneFileAdapter.java │ ├── bean │ ├── Base.java │ ├── Disk.java │ ├── PcFile.java │ └── Upload.java │ ├── exception │ └── CrashException.java │ ├── fragment │ ├── BaseFragment.java │ └── CenterFragment.java │ ├── manager │ ├── DBManager.java │ └── RemoteActivityManager.java │ ├── net │ └── SocketClientManager.java │ ├── slidingmenu │ ├── CanvasTransformerBuilder.java │ ├── CustomViewAbove.java │ ├── CustomViewBehind.java │ ├── MenuInterface.java │ ├── SlidingMenu.java │ └── app │ │ ├── SlidingActivityBase.java │ │ ├── SlidingActivityHelper.java │ │ └── SlidingFragmentActivity.java │ ├── thread │ ├── DownLoadThread.java │ ├── KeyPadThread.java │ ├── MouseThread.java │ └── UploadThread.java │ ├── util │ ├── ConfigUtil.java │ ├── Constant.java │ ├── FileUtil.java │ ├── KeyValue.java │ ├── OpenFiles.java │ └── Util.java │ └── view │ └── PointerView.java └── RemoteServer ├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── META-INF └── MANIFEST.MF ├── bin ├── main │ ├── Main.class │ ├── ServerWindow$1.class │ └── ServerWindow.class ├── manager │ └── ThreadManager.class ├── model │ ├── Disk.class │ ├── FileLog.class │ └── PcFile.class ├── server │ ├── ConnectServer$1.class │ ├── ConnectServer$2.class │ ├── ConnectServer$3.class │ ├── ConnectServer$4.class │ ├── ConnectServer$5.class │ └── ConnectServer.class ├── thread │ ├── DownThread.class │ ├── KeypadThread.class │ ├── MouseThread.class │ ├── ServerThread.class │ └── UpThread.class └── util │ ├── Constant.class │ └── FileUtil.class ├── lib └── gson-1.7.1.jar └── src ├── main ├── Main.java └── ServerWindow.java ├── manager └── ThreadManager.java ├── model ├── Disk.java ├── FileLog.java └── PcFile.java ├── server └── ConnectServer.java ├── thread ├── DownThread.java ├── KeypadThread.java ├── MouseThread.java ├── ServerThread.java └── UpThread.java └── util ├── Constant.java └── FileUtil.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/README.md -------------------------------------------------------------------------------- /RemoteControll/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/.classpath -------------------------------------------------------------------------------- /RemoteControll/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/.project -------------------------------------------------------------------------------- /RemoteControll/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /RemoteControll/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RemoteControll/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/AndroidManifest.xml -------------------------------------------------------------------------------- /RemoteControll/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/ic_launcher-web.png -------------------------------------------------------------------------------- /RemoteControll/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/libs/android-support-v4.jar -------------------------------------------------------------------------------- /RemoteControll/libs/android-support-v4.jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/libs/android-support-v4.jar.properties -------------------------------------------------------------------------------- /RemoteControll/libs/xUtils-2.6.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/libs/xUtils-2.6.9.jar -------------------------------------------------------------------------------- /RemoteControll/libs/xUtils-2.6.9.jar.properties: -------------------------------------------------------------------------------- 1 | src = D:\\androidDemo\\xUtils-master\\library -------------------------------------------------------------------------------- /RemoteControll/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/proguard-project.txt -------------------------------------------------------------------------------- /RemoteControll/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/project.properties -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/btn_keyboard_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/btn_keyboard_key.xml -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/disk.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/download_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/download_file.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_down.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_folder.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_mp3.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_office.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_pdf.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_picture.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_rar.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_txt.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_icon_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_icon_video.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_upload.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/file_upload_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/file_upload_btn.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/folder.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/keyboard_backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/keyboard_backspace.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/login_button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/login_button.9.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/login_button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/login_button_press.9.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/normal_key_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/normal_key_bg.9.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/normal_key_hl_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/normal_key_hl_bg.9.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/pc_power_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/pc_power_off.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/pc_power_off_canel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/pc_power_off_canel.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_delete.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_done.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_left.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_left.PNG -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_right.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_right.PNG -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_search.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_shift.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/sym_keyboard_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/sym_keyboard_space.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/title_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/title_bar.9.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/up_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/up_level.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/up_level_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/up_level_pressed.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-hdpi/windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-hdpi/windows.jpg -------------------------------------------------------------------------------- /RemoteControll/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /RemoteControll/res/drawable/list_item_textcolor_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable/list_item_textcolor_style.xml -------------------------------------------------------------------------------- /RemoteControll/res/drawable/login_btn_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable/login_btn_selector.xml -------------------------------------------------------------------------------- /RemoteControll/res/drawable/slidingmenu_shadow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable/slidingmenu_shadow.xml -------------------------------------------------------------------------------- /RemoteControll/res/drawable/up_back_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/drawable/up_back_button.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/behind_sliding_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/behind_sliding_menu.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/center_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/center_fragment.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/control_mouse_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/control_mouse_activity.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/disk_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/disk_list_item.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/download_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/download_activity.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/file_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/file_list_item.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/ip_set_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/ip_set_layout.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/keypad_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/keypad_layout.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/local_file_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/local_file_dialog.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/local_file_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/local_file_list_item.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/main_layout.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/pc_power_off_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/pc_power_off_activity.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/slidingmenumain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/slidingmenumain.xml -------------------------------------------------------------------------------- /RemoteControll/res/layout/upload_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/layout/upload_activity.xml -------------------------------------------------------------------------------- /RemoteControll/res/menu/actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/menu/actions.xml -------------------------------------------------------------------------------- /RemoteControll/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values-v11/styles.xml -------------------------------------------------------------------------------- /RemoteControll/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values-v14/styles.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/arrays.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/attrs.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/colors.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/dimens.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/ids.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/sliding_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/sliding_dimens.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/strings.xml -------------------------------------------------------------------------------- /RemoteControll/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/values/styles.xml -------------------------------------------------------------------------------- /RemoteControll/res/xml/qwerty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/res/xml/qwerty.xml -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/BaseActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/BaseApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/BaseApplication.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/BaseFragmetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/BaseFragmetActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/DownLoadActivty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/DownLoadActivty.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/IPsetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/IPsetActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/KeyPadActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/KeyPadActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/MouseControllActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/MouseControllActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/PhoneFileDialogActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/PhoneFileDialogActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/RemoteMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/RemoteMainActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/ShutDownActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/ShutDownActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/UploadActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/UploadActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/adapter/DiskAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/adapter/DiskAdapter.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/adapter/FileAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/adapter/FileAdapter.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/adapter/PhoneFileAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/adapter/PhoneFileAdapter.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/bean/Base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/bean/Base.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/bean/Disk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/bean/Disk.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/bean/PcFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/bean/PcFile.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/bean/Upload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/bean/Upload.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/exception/CrashException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/exception/CrashException.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/fragment/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/fragment/BaseFragment.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/fragment/CenterFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/fragment/CenterFragment.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/manager/DBManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/manager/DBManager.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/manager/RemoteActivityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/manager/RemoteActivityManager.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/net/SocketClientManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/net/SocketClientManager.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/CanvasTransformerBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/CanvasTransformerBuilder.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/CustomViewAbove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/CustomViewAbove.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/CustomViewBehind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/CustomViewBehind.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/MenuInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/MenuInterface.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/SlidingMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/SlidingMenu.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingActivityBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingActivityBase.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingActivityHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingActivityHelper.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingFragmentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/slidingmenu/app/SlidingFragmentActivity.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/thread/DownLoadThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/thread/DownLoadThread.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/thread/KeyPadThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/thread/KeyPadThread.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/thread/MouseThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/thread/MouseThread.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/thread/UploadThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/thread/UploadThread.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/ConfigUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/ConfigUtil.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/Constant.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/FileUtil.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/KeyValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/KeyValue.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/OpenFiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/OpenFiles.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/util/Util.java -------------------------------------------------------------------------------- /RemoteControll/src/com/devil/remotecontroll/view/PointerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteControll/src/com/devil/remotecontroll/view/PointerView.java -------------------------------------------------------------------------------- /RemoteServer/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/.classpath -------------------------------------------------------------------------------- /RemoteServer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/.project -------------------------------------------------------------------------------- /RemoteServer/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /RemoteServer/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /RemoteServer/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /RemoteServer/bin/main/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/main/Main.class -------------------------------------------------------------------------------- /RemoteServer/bin/main/ServerWindow$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/main/ServerWindow$1.class -------------------------------------------------------------------------------- /RemoteServer/bin/main/ServerWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/main/ServerWindow.class -------------------------------------------------------------------------------- /RemoteServer/bin/manager/ThreadManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/manager/ThreadManager.class -------------------------------------------------------------------------------- /RemoteServer/bin/model/Disk.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/model/Disk.class -------------------------------------------------------------------------------- /RemoteServer/bin/model/FileLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/model/FileLog.class -------------------------------------------------------------------------------- /RemoteServer/bin/model/PcFile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/model/PcFile.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer$1.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer$2.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer$3.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer$4.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer$5.class -------------------------------------------------------------------------------- /RemoteServer/bin/server/ConnectServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/server/ConnectServer.class -------------------------------------------------------------------------------- /RemoteServer/bin/thread/DownThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/thread/DownThread.class -------------------------------------------------------------------------------- /RemoteServer/bin/thread/KeypadThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/thread/KeypadThread.class -------------------------------------------------------------------------------- /RemoteServer/bin/thread/MouseThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/thread/MouseThread.class -------------------------------------------------------------------------------- /RemoteServer/bin/thread/ServerThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/thread/ServerThread.class -------------------------------------------------------------------------------- /RemoteServer/bin/thread/UpThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/thread/UpThread.class -------------------------------------------------------------------------------- /RemoteServer/bin/util/Constant.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/util/Constant.class -------------------------------------------------------------------------------- /RemoteServer/bin/util/FileUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/bin/util/FileUtil.class -------------------------------------------------------------------------------- /RemoteServer/lib/gson-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/lib/gson-1.7.1.jar -------------------------------------------------------------------------------- /RemoteServer/src/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/main/Main.java -------------------------------------------------------------------------------- /RemoteServer/src/main/ServerWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/main/ServerWindow.java -------------------------------------------------------------------------------- /RemoteServer/src/manager/ThreadManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/manager/ThreadManager.java -------------------------------------------------------------------------------- /RemoteServer/src/model/Disk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/model/Disk.java -------------------------------------------------------------------------------- /RemoteServer/src/model/FileLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/model/FileLog.java -------------------------------------------------------------------------------- /RemoteServer/src/model/PcFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/model/PcFile.java -------------------------------------------------------------------------------- /RemoteServer/src/server/ConnectServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/server/ConnectServer.java -------------------------------------------------------------------------------- /RemoteServer/src/thread/DownThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/thread/DownThread.java -------------------------------------------------------------------------------- /RemoteServer/src/thread/KeypadThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/thread/KeypadThread.java -------------------------------------------------------------------------------- /RemoteServer/src/thread/MouseThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/thread/MouseThread.java -------------------------------------------------------------------------------- /RemoteServer/src/thread/ServerThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/thread/ServerThread.java -------------------------------------------------------------------------------- /RemoteServer/src/thread/UpThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/thread/UpThread.java -------------------------------------------------------------------------------- /RemoteServer/src/util/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/util/Constant.java -------------------------------------------------------------------------------- /RemoteServer/src/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangxiufeng666/RemoteControll/HEAD/RemoteServer/src/util/FileUtil.java --------------------------------------------------------------------------------