: Toggle the active window on the taskbar using Windows Flip win+shift +←: Jump to the left of the monitor win+shift+→: Jump to the right of the monitor win+↑: Maximize the current window win+↓: Restore/Minimize the current window win+←: the current window to maximize the left up win+→: the current window to the right up and down win++: Enlarge the screen display win+ -: Zoom out on the 1 floor Windows 7 shortcut key is Microsoft's official Windows 7 operating system shortcut key application exp
Eclipse Common shortcut keys
1 Alt+shift+j Quick Generate method Note 2 alt+↓ line of code with the next row Exchange position, alt+↓ line of code with the previous row Exchange position 3 Ctrl + Alt+↓ quick copy plus paste, Ctrl + D delete Line 4 Ctrl +/comment and dismiss comment, only one row 5 CTRL + SHIFT +/Comment block code 6 CTRL + SHIFT + \ On opposite 7 Ctrl +shift+r Quick Find files (. java. jsp. XML, etc.) 8 CTRL + SHIFT +/Quick Comment 9 ALT + sh
D. String Game time limit per test 2 seconds memory limit per test megabytes input standard input output standard OUTP Ut
Little Nastya have a hobby, she likes to remove some letters from word, to obtain another word. But it turns off to being pretty hard for her, because she's too young. Therefore, her brother Sergey helps.
Sergey gives Nastya the Wordtand wants to get the wordpout of it. Nastya removes letters in a certain order (one through another, in this order Strictly), which was specifi
Add Permission settingsDetermines whether the current device is an emulator. If true, it is currently the emulator, not returning falseprivate static Boolean Isemulator (context context) {try{Telephonymanager TM = (Telephonymanager) context.getsystemservice (Context.telephony_service);String IMEI = Tm.getdeviceid ();if (IMEI = null (imei.equals ("000000000000000") | | imei.equals ("098675694745850"))) {ret
I do not know that you notice no, in the simulator is installed after the installation can not run, now, because the project needs, also need to implement the same function, nonsense not much to say, directly on the code.Package Com.example.checkisemulator;import Android.os.build;import Android.os.bundle;import android.app.Activity; Import Android.content.context;import Android.telephony.telephonymanager;import Android.view.menu;public class Mainactivity extends Activity {@Overrideprotected void
beginning, when this property is set, its value is also written to/data/property.If the property name is in "net." At the beginning, when this property is set, the "Net.change" property is automatically set to add to the last modified property name.When setting properties, be aware that:Android.os.SystemProperties.set (Key, Val)Where the name prefix of the key value must be usedAndroid\platform\system\core\initThe program that is defined in the system property must also have the systems or root
About mobile phone IMEIYou can locate the base station based on the IMEI to find out the SIM card used by the mobile phone. Therefore, it is recommended to use shanzhai chicken, because, you know, the IMEI of shanzhai chicken is sometimes the same, which is why the European and American countries do not allow shanzhai chicken to enter the land, because the country cannot locate and locate it, nima, full map
typical IMSI number of 460030912121001; Min has a total of 10 bits, the structure is as follows: 09+M0M1M2M3+ABCD There is a correspondence between the M0M1M2M3 and the h0h1h2h3 in the MDN number, and the ABCD four bits are allocated freely. It can be seen that imsi in the min number before the MCC, can distinguish each user from the country, so can achieve international roaming. In the same country, if there are multiple CDMA operators, the MNC can be used to differentiate.Function description
Do mobile phone development, presumably want to get mobile phone number bar, Android has a class Android.telephony.TelephonyManager provide this feature.Telephonymanager TM = (Telephonymanager) this.getsystemservice (Context.telephony_service);Numbertext.settext (tm. Getline1number());The red flag function is able to get the native number.In addition, Telephonymanager class also provides a variety of access to mobile phone information functions, into the IM
The VPN link is not strictly controlled by Sohu Changyou account system.
RT
01 # weak Email PasswordHttps://webmail.cyou-inc.com/owaWangjian 1qaz @ WSXThe VPN link is displayed.
The Wi-Fi password is displayed.
You can view the latest games with a wi-fi password:
02 # Same VPN and mailbox PasswordHttps://vpn.cyou-inc.com/por/login_psw.csp? Rnd = 0.7370990256313235 # https % 3A % 2F % 2Fvpn.cyou-inc.com % 2FThe mobile phone number needs to be verified, but it seems that it can be bypassed. Ref
If you use the in statement, it feels very slow and there is no result after running for a long time. You can grasp the progress by using the stored procedure to delete it. This is the sample code of MySQL cursor loop, so you can avoid frequent searches in the future.
If you use the in statement, it feels very slow and there is no result after running for a long time. You can grasp the progress by using the stored procedure to delete it. This is the sample code of MySQL cursor loop, so you can
Telephonymanager This class is useful and can get a lot of information about mobile phones and SIM cards.Directly on the code after the comment, please enjoyPackage Net.sunniwell.app;Import android.app.Activity;Import Android.os.Bundle;Import android.telephony.CellLocation;Import Android.telephony.PhoneStateListener;Import Android.telephony.TelephonyManager;public class Telmanager extends Activity { @Overrideprotected void OnCreate (Bundle savedinstancestate) {Super.oncreate (savedinstancestate)
1. Enter * #4636 # * in the dialing interface to view
2.*#06 # view the IMEI information of the mobile phone
The source code is as follows:
Public void aftertextchanged (editable input ){If (specialcharsequencemgr. handlechars (this, input. tostring (), mdigits )){// A special sequence was entered, clear the digitsMdigits. gettext (). Clear ();}
If (! Isdigitsempty ()){Mdigits. setbackgrounddrawable (mdigitsbackground );} Else {Mdigits. setcursorvisib
1) read imsi, IMEI, and mobile phone number:
TelephonyManager tm = (TelephonyManager)
this
.getSystemService(Context.TELEPHONY_SERVICE);
String deviceid = tm.getDeviceId();
String tel = tm.getLine1Number();
String imei =tm.getSimSerialNumber();
String imsi =tm.getSubscriberId();
NOTE:
Not all mobile phone numbers can be obtained. Only some of them can be obtained. This is because the mobile operator di
Query the Phone firmware version (mobile phone model or type identifier) and Code of Nokia
On the dialing page, enter * #0000 #. after entering the # number, the Device Manager is displayed. For example, Nokia e72 of the US version is used, after entering "* #0000 #", the following mobile phone soft fix information is displayed:
Nokia e72 Device Manager
Software Version021.024
Software Version date17--200-2009
Custom version021.024.301.03
Custom version date12-Jan 2010
Languge set47.01
ModelE72
1.2.2.2 system information
InAndroidTo obtain system information, you can call the provided method system. getproperty (propertystr), and system information such as the user root directory (user. home) and so on can be obtained through this method, the implementation code is as follows:
Java code:
Public static stringbuffer buffer = NULL;Private Static string initproperty (string description, string propertystr ){If (buffer = NULL ){Buffer = new stringbuffer ();}Buffer. append (description). app
function settings file, including mobile phone device settings, call settings, connection settings, time settings, network settings, and so on. After you change the settings in tools-settings, the files in this folder will change.C:/system/temp/folder for storing temporary files. Initialization is empty.C:/system. ini system initialization configuration file.Query code
Enter * #62209526 # in the standby mode to check the wlan mac address.Enter * #2820 # in standby mode to check the Bluetooth MA
code, mobile country code, 3 digits in total, 460 for China;MNC: mobile network code, mobile network code, two digits in total, China Telecom 03, China Mobile 02, China Unicom GSM 01, a typical imsi Number of 460030912121001;Min has a total of 10 digits, and its structure is as follows:09 + m0m1m2m3 + ABCDAmong them, the m0m1m2m3 and the h0h1h2h3 in the mdn number can have a correspondence relationship, and the four bits of ABCD are freely allocated.We can see that imsi has added MCC before the
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.