首页 文章 精选 留言 我的

精选列表

搜索[接口设计],共10000篇文章
优秀的个人博客,低调大师

Go中的接口多态及嵌入类

我感觉个还好理解, 至少比当初入JAVA时更容易理解, 可能是以前的学习为现在打下了基础吧。 又或许是最近三年的程序编写,长了见识吧~ package main import ( "fmt" ) type notifier interface { notify() } type user struct { name string email string } type admin struct { user level string } func (u user) notify() { fmt.Printf("Sending User Email To %s<%s>\n", u.name, u.email) } func (u admin) notify() { fmt.Printf("Sending Admin Email To %s<%s>\n", u.name, u.email) } func (u *user) changeEmail(email string) { u.email = email } func main() { bill := user{"Bill", "bill@email.com"} sendNotification(bill) lisa := admin{ user: user{ name: "Lisa", email: "lisa@email.com", }, level: "super", } sendNotification(lisa) } func sendNotification(n notifier) { n.notify() }

优秀的个人博客,低调大师

接口测试之Fiddler+APP抓包

Fiddler简介: Fiddler是强大且好用的Web调试工具之一,它能记录客户端和服务器的http和https请求,允许你监视,设置断点,甚至修改输入输出数 据。 Fiddler 的运行机制其实就是本机上监听8888端口的HTTP代理。 对于PC端Fiddler启动的时候默认IE的代理设为了127.0.0.1:8888,而其他浏览器是需要手动设置的,所以如果需要监听PC端 Chrome网络请求,将其代理改为127.0.0.1:8888就可以监听数据了,手机端按照下面的设置即可完成整个系统的http代理。 一、下载神器Fiddler,下载链接:fiddler2.com/get-fiddler下载完成之后,傻瓜式的安装一下OK了! Fiddler桌面快捷方式 二、设置Fiddler 打开Fiddler, Tools-> Fiddler Options (配置完后记得要重启Fiddler) 选中"Decrpt HTTPS traffic", Fiddler就可以截获HTTPS请求 配置HTTPS请求 选中"Allow remote computers to connect". 是允许别的机器把HTTP/HTTPS请求发送到Fiddler上来。记住这个端口号是:8888 配置HTTP/HTTPS请求权限 三、设置Android手机 首先获取PC的ip地址:命令行中输入:ipconfig,获取ip地址。这时候我就拿到了电脑IP地址和端口号了 PC端IP地址 下面来对Android手机进行代理设置,本人使用的是小米5S 首先,要确定一下手机和PC是连接在同一个局域网中 进入手机的设置->点击进入WLAN设置->选择连接到的无线网,点右边的箭头(有的手机是长按弹出选项框):如图所示: 设置代理 代理这一行,选择:手动 选择修改网络配置: 1)配置主机名:与主机电脑IP地址保持一致 2)端口号:8888 设置代理 点击保存。这样就将我们的手机设置成功了。 四、打开要测试的APP,然后打开电脑上的fiddler界面,本人在手机端打开的是“简书APP”。如下图 抓简书APP 这样就抓取Android移动端的数据包成功了,这个对于我们后面进行网络数据请求的调试有很大的帮助,我们可以通过这个方法来判断我们请求网络是否成功! 注:一般http请求,不用安装安全证书;如果是https的请求,设置代理后,会无法访问,这时候就需要安装安全证书了 五、下载Fiddler的安全证书 使用手机的浏览器打开:http://192.168.2.204:8080, 点"FiddlerRoot certificate" 然后安装证书,如图: 下载安全证书 六、截取HTTPS请求 1.下载安装证书生成器 证书地址:http://www.telerik.com/docs/default-source/fiddler/addons/fiddlercertmaker.exe?sfvrsn=2 2.生成证书保存至电脑桌面(Tools->Options->HTTPS->Actions->Export Root Certificate to Desktop) 生成证书 FiddlerRoot.cer 证书 3.将桌面的FiddlerRoot.cer(生成的证书)放到手机中安装(通过USB数据线或者SD卡导入) 安装证书 4.查看抓取的请求类型(结果) 请求结果 好了,小伙伴们,下一步就该学习学习该怎么分析抓到的数据了。。。

优秀的个人博客,低调大师

Android4.0设置接口变更摘要(四)

为了与你之前,你已经设置了共享Tab风格和Item实现圆角。希望能给有须要的朋友一点点帮助,今天再和大家分享一下用ViewPager实现设置分页,小米和OPPO就是这种设置,先来看看效果图: 为了帮助大家更清晰的理解,我单独拿出一个小样例。有须要的朋友能够下载下来看看: http://git.oschina.net/way/SettingTab/tree/master 事实上要实现这种风格并不难。仅仅要能比較深入的理解PreferenceActivity.java就能够了。 我们都知道Settings.java是继承自PreferenceActivity.java,所用的布局文件layout也是父类的,并且他的二级界面都是Fragment。都是依赖他这个Activity。假设在onCreate函数中通过setContentView()改变Settings.java的布局。岂不是也会影响他的二级界面?相信非常多遇到困难的朋友就是这个原因。 答案是否定的。非常明显,我们仅仅须要在显示Settings的第一个界面的时候才setContentView()。也就是说在onCreate里面推断一下:if (this.getClass().equals(Settings.class)),为什么是这样呢?我们能够滚动到Settings.java文件末尾,会发现。事实上二级菜单都是一些Fragment。可是它们也有虚拟的类名的,都是Settings的内部类,所以,进到二级菜单就不满足这个条件了。 例如以下所看到的: if (this.getClass().equals(Settings.class)) { setContentView(R.layout.tab_settings); mTabCursor = (ImageView) findViewById(R.id.tab_cursor); ViewPager viewPager = (ViewPager) findViewById(R.id.pager); viewPager.setAdapter(new ViewPagerAdapter(getFragmentManager())); viewPager.setOnPageChangeListener(mPageChangeListener); mViewPager = viewPager; mTabGeneral = (TextView) findViewById(R.id.tab_general); mTabDisplay = (TextView) findViewById(R.id.tab_display); mTabGeneral.setOnClickListener(mTabOnClickListener); mTabDisplay.setOnClickListener(mTabOnClickListener); mTabGeneral.setTextColor(COLOR_SELECTED); mTabGeneral.setTextSize(TEXT_SIZE_SELECTED); } 相信,看完上面这段代码,遇到困难的朋友应该会豁然开朗。以下都能够不用继续看下去了。 只是为了善始善终,我会继续贴下去。 接下来。我们看看tab_settings.xml的布局,由于PreferenceActivity的特性,布局中必需要有一个id为android:id/list的ListView,由于全部的xml文件夹下的preference解析出来都是显示在上面,尽管我们改变了布局。但还是不能改变他的代码嘛!就弄一个高度宽度为0的ListView骗一下它就能够了,呵呵: <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ListView android:id="@android:id/list" android:layout_width="0dp" android:layout_height="0dp" android:visibility="gone"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <FrameLayout android:layout_width="match_parent" android:layout_height="@dimen/tab_height" android:background="@drawable/tab_background" > <ImageView android:id="@+id/tab_cursor" android:layout_width="@dimen/tab_width" android:layout_height="@dimen/tab_height" android:background="@drawable/tab_cursor"/> <LinearLayout android:layout_width="match_parent" android:layout_height="@dimen/tab_height"> <TextView android:id="@+id/tab_general" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center_vertical" android:gravity="center" android:text="@string/tab_general" android:singleLine="true" android:textSize="@dimen/tab_text_size" /> <TextView android:id="@+id/tab_display" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center" android:layout_gravity="center_vertical" android:text="@string/tab_display" android:singleLine="true" android:textSize="@dimen/tab_text_size" /> </LinearLayout> </FrameLayout> <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout> </FrameLayout> 接下来便是普通ViewPager的使用了。我这里就不多说了。 以下把整个Settings.java的源码分享一下: /* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.settings; import android.app.ActionBar; import android.app.ActivityManager; import android.app.Fragment; import android.app.FragmentManager; import com.android.internal.util.ArrayUtils; import com.android.settings.accounts.AccountSyncSettings; import com.android.settings.accounts.AuthenticatorHelper; import com.android.settings.accounts.ManageAccountsSettings; import com.android.settings.applications.ManageApplications; import com.android.settings.bluetooth.BluetoothEnabler; import com.android.settings.deviceinfo.Memory; import com.android.settings.fuelgauge.PowerUsageSummary; import com.android.settings.inputmethod.UserDictionaryAddWordFragment; import com.android.settings.wifi.WifiEnabler; import com.android.settings.wristwatch.WristwatchEnabler; import static com.sprd.android.config.OptConfig.LC_RAM_SUPPORT; import android.accounts.Account; import android.accounts.AccountManager; import android.accounts.OnAccountsUpdateListener; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.content.pm.ActivityInfo; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.os.INetworkManagementService; import android.os.RemoteException; import android.os.ServiceManager; import android.os.UserId; import android.os.SystemProperties; import android.os.TopwiseProp; import android.preference.Preference; import android.preference.PreferenceActivity; import android.preference.PreferenceActivity.Header; import android.preference.PreferenceFragment; import android.support.v13.app.FragmentPagerAdapter; import android.support.v4.view.ViewPager; import android.support.v4.view.ViewPager.OnPageChangeListener; import android.telephony.TelephonyManager; import android.text.TextUtils; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.Window; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.BaseAdapter; import android.widget.Button; import android.widget.CompoundButton; import android.widget.ImageView; import android.widget.ListAdapter; import android.widget.Switch; import android.widget.TextView; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.List; /** * Top-level settings activity to handle single pane and double pane UI layout. */ public class Settings extends PreferenceActivity implements ButtonBarHandler, OnAccountsUpdateListener { private static final String LOG_TAG = "Settings"; private static final String META_DATA_KEY_HEADER_ID = "com.android.settings.TOP_LEVEL_HEADER_ID"; private static final String META_DATA_KEY_FRAGMENT_CLASS = "com.android.settings.FRAGMENT_CLASS"; private static final String META_DATA_KEY_PARENT_TITLE = "com.android.settings.PARENT_FRAGMENT_TITLE"; private static final String META_DATA_KEY_PARENT_FRAGMENT_CLASS = "com.android.settings.PARENT_FRAGMENT_CLASS"; private static final String EXTRA_CLEAR_UI_OPTIONS = "settings:remove_ui_options"; private static final String SAVE_KEY_CURRENT_HEADER = "com.android.settings.CURRENT_HEADER"; private static final String SAVE_KEY_PARENT_HEADER = "com.android.settings.PARENT_HEADER"; //fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 start private static final String GSETTINGS_PROVIDER = "com.google.settings"; //fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 send public static boolean UNIVERSEUI_SUPPORT = SystemProperties.getBoolean("universe_ui_support",false); public static final boolean CU_SUPPORT = SystemProperties.get("ro.operator").equals("cucc"); private String mFragmentClass; private int mTopLevelHeaderId; private Header mFirstHeader; private Header mCurrentHeader; private Header mParentHeader; private boolean mInLocalHeaderSwitch; // Show only these settings for restricted users private int[] SETTINGS_FOR_RESTRICTED = { R.id.wifi_settings, R.id.bluetooth_settings, R.id.sound_settings, R.id.display_settings, R.id.security_settings, R.id.account_settings, R.id.about_settings }; private boolean mEnableUserManagement = false; // TODO: Update Call Settings based on airplane mode state. protected HashMap<Integer, Integer> mHeaderIndexMap = new HashMap<Integer, Integer>(); private AuthenticatorHelper mAuthenticatorHelper; private Header mLastHeader; private boolean mListeningToAccountUpdates; private boolean mBluetoothEnable; private boolean mVoiceCapable; // Start by luqiang, topwise, 2014.2.27 [wristwatch config] //private boolean mIsOpenWristwatchCfg = TopwiseProp.getDefaultSettingBoolean("topwise_open_wristwatch"); private boolean mIsOpenWristwatchCfg = TopwiseProp.getDefaultSettingBoolean("topwise_wristwatch_unlock"); // End by luqiang, topwise, 2014.2.27 [wristwatch config] @Override protected void onCreate(Bundle savedInstanceState) { mBluetoothEnable = (SystemProperties.getInt("ro.tablet.bluetooth.enable", 1) != 0); mBluetoothEnable = (SystemProperties.getInt("ro.tablet.bluetooth.enable", 1) != 0); mVoiceCapable = getResources().getBoolean(com.android.internal.R.bool.config_voice_capable); if (getIntent().getBooleanExtra(EXTRA_CLEAR_UI_OPTIONS, false)) { getWindow().setUiOptions(0); } if (android.provider.Settings.Secure.getInt(getContentResolver(), "multiuser_enabled", -1) > 0) { mEnableUserManagement = true; } mAuthenticatorHelper = new AuthenticatorHelper(); mAuthenticatorHelper.updateAuthDescriptions(this); mAuthenticatorHelper.onAccountsUpdated(this, null); getMetaData(); mInLocalHeaderSwitch = true; //add by daiwei for tab if (getClass().getName().equals("com.android.settings.Settings")) { setTheme(android.R.style.Theme_Holo_Light_NoActionBar); } //end by daiwei super.onCreate(savedInstanceState); mInLocalHeaderSwitch = false; //For LowCost case, define the list selector by itself if (LC_RAM_SUPPORT) getListView().setSelector(R.drawable.list_selector_holo_dark); if (!onIsHidingHeaders() && onIsMultiPane()) { highlightHeader(mTopLevelHeaderId); // Force the title so that it doesn't get overridden by a direct launch of // a specific settings screen. setTitle(R.string.settings_label); } // Retrieve any saved state if (savedInstanceState != null) { mCurrentHeader = savedInstanceState.getParcelable(SAVE_KEY_CURRENT_HEADER); mParentHeader = savedInstanceState.getParcelable(SAVE_KEY_PARENT_HEADER); } // If the current header was saved, switch to it if (savedInstanceState != null && mCurrentHeader != null) { //switchToHeaderLocal(mCurrentHeader); showBreadCrumbs(mCurrentHeader.title, null); } if (mParentHeader != null) { setParentTitle(mParentHeader.title, null, new OnClickListener() { public void onClick(View v) { switchToParent(mParentHeader.fragment); } }); } // Override up navigation for multi-pane, since we handle it in the fragment breadcrumbs if (onIsMultiPane()) { getActionBar().setDisplayHomeAsUpEnabled(false); getActionBar().setHomeButtonEnabled(false); } //add by daiwei for tab setting if (getClass().getName().equals("com.android.settings.Settings")) { setContentView(R.layout.tab_settings); mTabCursor = (ImageView)findViewById(R.id.tab_cursor); ViewPager viewPager = (ViewPager)findViewById(R.id.pager); viewPager.setAdapter(new ViewPagerAdapter(getFragmentManager())); viewPager.setOnPageChangeListener(mPageChangeListener); mViewPager = viewPager; View tab_general = findViewById(R.id.tab_general); View tab_display = findViewById(R.id.tab_display); tab_general.setOnClickListener(mTabOnClickListener); tab_display.setOnClickListener(mTabOnClickListener); mTabGeneral = (TextView)tab_general; mTabDisplay = (TextView)tab_display; mTabGeneral.setTextColor(COLOR_SELECTED); mTabGeneral.setTextSize(TEXT_SIZE_SELECTED); } //end by daiwei } @Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); // Save the current fragment, if it is the same as originally launched if (mCurrentHeader != null) { outState.putParcelable(SAVE_KEY_CURRENT_HEADER, mCurrentHeader); } if (mParentHeader != null) { outState.putParcelable(SAVE_KEY_PARENT_HEADER, mParentHeader); } } @Override public void onResume() { super.onResume(); ListAdapter listAdapter = getListAdapter(); if (listAdapter instanceof HeaderAdapter) { ((HeaderAdapter) listAdapter).resume(); } invalidateHeaders(); setActionBarStyle();//add by liweiping 20140210 for bug 173 } //start by liweiping 20140210 for bug 173 /* Set ActionBar with popup function */ protected void setActionBarStyle() { ActionBar actionBar = getActionBar(); if (actionBar == null){ return; } if ( this.toString().contains("SubSettings") ) { actionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP, ActionBar.DISPLAY_HOME_AS_UP); actionBar.setDisplayHomeAsUpEnabled(true); } else { actionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP ^ ActionBar.DISPLAY_HOME_AS_UP , ActionBar.DISPLAY_HOME_AS_UP); actionBar.setDisplayHomeAsUpEnabled(false); } } //end by liweiping 20140210 @Override public void onPause() { super.onPause(); ListAdapter listAdapter = getListAdapter(); if (listAdapter instanceof HeaderAdapter) { ((HeaderAdapter) listAdapter).pause(); } } private String getRunningActivityName() { ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); return activityManager != null ? activityManager.getRunningTasks(1).get(0).topActivity .getClassName() : null; } // fix bug 185285 to avoid jump out of Settings when Locale changed on 20130819 begin /*@Override public void onBackPressed() { if (!moveTaskToBack(false)) { super.onBackPressed(); } }*/ // fix bug 185285 to avoid jump out of Settings when Locale changed on 20130819 end @Override public void onDestroy() { super.onDestroy(); if (mListeningToAccountUpdates) { AccountManager.get(this).removeOnAccountsUpdatedListener(this); } } private void switchToHeaderLocal(Header header) { mInLocalHeaderSwitch = true; switchToHeader(header); mInLocalHeaderSwitch = false; } @Override public void switchToHeader(Header header) { if (!mInLocalHeaderSwitch) { mCurrentHeader = null; mParentHeader = null; } super.switchToHeader(header); } /** * Switch to parent fragment and store the grand parent's info * @param className name of the activity wrapper for the parent fragment. */ private void switchToParent(String className) { final ComponentName cn = new ComponentName(this, className); try { final PackageManager pm = getPackageManager(); final ActivityInfo parentInfo = pm.getActivityInfo(cn, PackageManager.GET_META_DATA); if (parentInfo != null && parentInfo.metaData != null) { String fragmentClass = parentInfo.metaData.getString(META_DATA_KEY_FRAGMENT_CLASS); CharSequence fragmentTitle = parentInfo.loadLabel(pm); Header parentHeader = new Header(); parentHeader.fragment = fragmentClass; parentHeader.title = fragmentTitle; mCurrentHeader = parentHeader; switchToHeaderLocal(parentHeader); highlightHeader(mTopLevelHeaderId); mParentHeader = new Header(); mParentHeader.fragment = parentInfo.metaData.getString(META_DATA_KEY_PARENT_FRAGMENT_CLASS); mParentHeader.title = parentInfo.metaData.getString(META_DATA_KEY_PARENT_TITLE); } } catch (NameNotFoundException nnfe) { Log.w(LOG_TAG, "Could not find parent activity : " + className); } } @Override public void onNewIntent(Intent intent) { super.onNewIntent(intent); // If it is not launched from history, then reset to top-level if ((intent.getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) == 0 && mFirstHeader != null && !onIsHidingHeaders() && onIsMultiPane()) { switchToHeaderLocal(mFirstHeader); } } private void highlightHeader(int id) { if (id != 0) { Integer index = mHeaderIndexMap.get(id); if (index != null) { getListView().setItemChecked(index, true); getListView().smoothScrollToPosition(index); } } } @Override public Intent getIntent() { Intent superIntent = super.getIntent(); String startingFragment = getStartingFragmentClass(superIntent); // This is called from super.onCreate, isMultiPane() is not yet reliable // Do not use onIsHidingHeaders either, which relies itself on this method if (startingFragment != null && !onIsMultiPane()) { Intent modIntent = new Intent(superIntent); modIntent.putExtra(EXTRA_SHOW_FRAGMENT, startingFragment); Bundle args = superIntent.getExtras(); if (args != null) { args = new Bundle(args); } else { args = new Bundle(); } args.putParcelable("intent", superIntent); modIntent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, superIntent.getExtras()); return modIntent; } return superIntent; } /** * Checks if the component name in the intent is different from the Settings class and * returns the class name to load as a fragment. */ protected String getStartingFragmentClass(Intent intent) { if (mFragmentClass != null) return mFragmentClass; String intentClass = intent.getComponent().getClassName(); if (intentClass.equals(getClass().getName())) return null; if ("com.android.settings.ManageApplications".equals(intentClass) || "com.android.settings.RunningServices".equals(intentClass) || "com.android.settings.applications.StorageUse".equals(intentClass)) { // Old names of manage apps. intentClass = com.android.settings.applications.ManageApplications.class.getName(); } return intentClass; } /** * Override initial header when an activity-alias is causing Settings to be launched * for a specific fragment encoded in the android:name parameter. */ @Override public Header onGetInitialHeader() { String fragmentClass = getStartingFragmentClass(super.getIntent()); if (fragmentClass != null) { Header header = new Header(); header.fragment = fragmentClass; header.title = getTitle(); header.fragmentArguments = getIntent().getExtras(); mCurrentHeader = header; return header; } return mFirstHeader; } @Override public Intent onBuildStartFragmentIntent(String fragmentName, Bundle args, int titleRes, int shortTitleRes) { Intent intent = super.onBuildStartFragmentIntent(fragmentName, args, titleRes, shortTitleRes); // some fragments want to avoid split actionbar if (DataUsageSummary.class.getName().equals(fragmentName) || PowerUsageSummary.class.getName().equals(fragmentName) || AccountSyncSettings.class.getName().equals(fragmentName) || UserDictionarySettings.class.getName().equals(fragmentName) || Memory.class.getName().equals(fragmentName) || ManageApplications.class.getName().equals(fragmentName) || WirelessSettings.class.getName().equals(fragmentName) || SoundSettings.class.getName().equals(fragmentName) || PrivacySettings.class.getName().equals(fragmentName) || // SPRD: Modify 20130830 Spreadst of Bug 207441 clipboard can not be called UserDictionaryAddWordFragment.class.getName().equals(fragmentName) || ManageAccountsSettings.class.getName().equals(fragmentName)) { intent.putExtra(EXTRA_CLEAR_UI_OPTIONS, true); } //fix bug 226565 select englisg in userdictoryaddwors, rotate, the language change to chinses on 20131012 begin intent.setClass(this, SubSettings.class); /* // fix bug 194403 to make the activity execute onCreate() method when orientation changed on 20130802 begin Log.i(LOG_TAG,"fragmentName = " + fragmentName); if (UserDictionaryAddWordFragment.class.getName().equals(fragmentName)) { intent.setClass(this, LanguageSubSettings.class); } else { intent.setClass(this, SubSettings.class); } // fix bug 194403 to make the activity execute onCreate() method when orientation changed on 20130802 end */ // fix bug 226565 select englisg in userdictoryaddwors, rotate, the language change to chinses on 20131012 end return intent; } /** * Populate the activity with the top-level headers. */ @Override public void onBuildHeaders(List<Header> headers) { if(UNIVERSEUI_SUPPORT){ loadHeadersFromResource(R.xml.settings_headers_uui, headers); }else{ loadHeadersFromResource(R.xml.settings_headers, headers); } updateHeaderList(headers); } private void updateHeaderList(List<Header> target) { int i = 0; boolean IsSupVoice = Settings.this.getResources().getBoolean(com.android.internal.R.bool. config_voice_capable); while (i < target.size()) { Header header = target.get(i); // Ids are integers, so downcasting int id = (int) header.id; if (id == R.id.dock_settings) { if (!needsDockSettings()) target.remove(header); } else if (id == R.id.operator_settings || id == R.id.manufacturer_settings) { Utils.updateHeaderToSpecificActivityFromMetaDataOrRemove(this, target, header); } else if (id == R.id.wifi_settings) { // Remove WiFi Settings if WiFi service is not available. // Start by changyan 2014.01.02 //if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI)) { if (!SystemProperties.getBoolean("ro.device.support.wifi", true)) { //End by changyan target.remove(header); } } else if (id == R.id.bluetooth_settings) { //Start by changyan 2014.01.03 // Remove Bluetooth Settings if Bluetooth service is not available. //if ((!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH)) // || (!mBluetoothEnable)) { if (!SystemProperties.getBoolean("ro.device.support.bt", true)) { //End by changyan target.remove(header); } } else if (id == R.id.data_usage_settings) { // Remove data usage when kernel module not enabled final INetworkManagementService netManager = INetworkManagementService.Stub .asInterface(ServiceManager.getService(Context.NETWORKMANAGEMENT_SERVICE)); // fix bug 182580 to delete the data usage item of settings on 20130717 begin boolean support_cmcc = SystemProperties.get("ro.operator").equals("cmcc"); try { if (!netManager.isBandwidthControlEnabled() || support_cmcc) { target.remove(header); } } catch (RemoteException e) { // ignored } // fix bug 182580 to delete the data usage item of settings on 20130717 end } else if (id == R.id.account_settings) { int headerIndex = i + 1; i = insertAccountsHeaders(target, headerIndex); } else if (id == R.id.user_settings) { if (!mEnableUserManagement || !UserId.MU_ENABLED || UserId.myUserId() != 0 || !getResources().getBoolean(R.bool.enable_user_management) || Utils.isMonkeyRunning()) { target.remove(header); } } else if (id == R.id.dual_sim_settings) { if (!TelephonyManager.isMultiSim() || (!mVoiceCapable)) { target.remove(header); } } else if (id == R.id.network_preference_settings) { if (!CU_SUPPORT) { target.remove(header); } } else if (id == R.id.sound_settings && IsSupVoice) { target.remove(header); } else if (id == R.id.audio_profiles && !IsSupVoice) { target.remove(header); } // Start by luqiang, topwise, 2014.2.27 [wristwatch config] else if (id == R.id.wristwatch_settings && false == mIsOpenWristwatchCfg) { target.remove(header); } // End by luqiang, topwise, 2014.2.27 [wristwatch config] if (UserId.MU_ENABLED && UserId.myUserId() != 0 && !ArrayUtils.contains(SETTINGS_FOR_RESTRICTED, id)) { target.remove(header); } // Increment if the current one wasn't removed by the Utils code. if (target.get(i) == header) { // Hold on to the first header, when we need to reset to the top-level if (mFirstHeader == null && HeaderAdapter.getHeaderType(header) != HeaderAdapter.HEADER_TYPE_CATEGORY) { mFirstHeader = header; } mHeaderIndexMap.put(id, i); i++; } } } private int insertAccountsHeaders(List<Header> target, int headerIndex) { String[] accountTypes = mAuthenticatorHelper.getEnabledAccountTypes(); List<Header> accountHeaders = new ArrayList<Header>(accountTypes.length); for (String accountType : accountTypes) { if (accountType.startsWith("sprd")) { continue; } CharSequence label = mAuthenticatorHelper.getLabelForType(this, accountType); if (label == null) { continue; } Account[] accounts = AccountManager.get(this).getAccountsByType(accountType); boolean skipToAccount = accounts.length == 1 && !mAuthenticatorHelper.hasAccountPreferences(accountType); Header accHeader = new Header(); accHeader.title = label; if (accHeader.extras == null) { accHeader.extras = new Bundle(); } if (skipToAccount) { accHeader.breadCrumbTitleRes = R.string.account_sync_settings_title; accHeader.breadCrumbShortTitleRes = R.string.account_sync_settings_title; accHeader.fragment = AccountSyncSettings.class.getName(); accHeader.fragmentArguments = new Bundle(); // Need this for the icon accHeader.extras.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE, accountType); accHeader.extras.putParcelable(AccountSyncSettings.ACCOUNT_KEY, accounts[0]); accHeader.fragmentArguments.putParcelable(AccountSyncSettings.ACCOUNT_KEY, accounts[0]); } else { accHeader.breadCrumbTitle = label; accHeader.breadCrumbShortTitle = label; accHeader.fragment = ManageAccountsSettings.class.getName(); accHeader.fragmentArguments = new Bundle(); accHeader.extras.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE, accountType); accHeader.fragmentArguments.putString(ManageAccountsSettings.KEY_ACCOUNT_TYPE, accountType); if (!isMultiPane()) { accHeader.fragmentArguments.putString(ManageAccountsSettings.KEY_ACCOUNT_LABEL, label.toString()); } } accountHeaders.add(accHeader); } // Sort by label Collections.sort(accountHeaders, new Comparator<Header>() { @Override public int compare(Header h1, Header h2) { return h1.title.toString().compareTo(h2.title.toString()); } }); for (Header header : accountHeaders) { target.add(headerIndex++, header); } if (!mListeningToAccountUpdates) { AccountManager.get(this).addOnAccountsUpdatedListener(this, null, true); mListeningToAccountUpdates = true; } return headerIndex; } private boolean needsDockSettings() { return getResources().getBoolean(R.bool.has_dock_settings); } private void getMetaData() { try { ActivityInfo ai = getPackageManager().getActivityInfo(getComponentName(), PackageManager.GET_META_DATA); if (ai == null || ai.metaData == null) return; mTopLevelHeaderId = ai.metaData.getInt(META_DATA_KEY_HEADER_ID); mFragmentClass = ai.metaData.getString(META_DATA_KEY_FRAGMENT_CLASS); // Check if it has a parent specified and create a Header object final int parentHeaderTitleRes = ai.metaData.getInt(META_DATA_KEY_PARENT_TITLE); String parentFragmentClass = ai.metaData.getString(META_DATA_KEY_PARENT_FRAGMENT_CLASS); if (parentFragmentClass != null) { mParentHeader = new Header(); mParentHeader.fragment = parentFragmentClass; if (parentHeaderTitleRes != 0) { mParentHeader.title = getResources().getString(parentHeaderTitleRes); } } } catch (NameNotFoundException nnfe) { // No recovery } } @Override public boolean hasNextButton() { return super.hasNextButton(); } @Override public Button getNextButton() { return super.getNextButton(); } private static class HeaderAdapter extends ArrayAdapter<Header> { static final int HEADER_TYPE_CATEGORY = 0; static final int HEADER_TYPE_NORMAL = 1; static final int HEADER_TYPE_SWITCH = 2; private static final int HEADER_TYPE_COUNT = HEADER_TYPE_SWITCH + 1; // Start by luqiang, topwise, 2014.2.27 [wristwatch config] private final WristwatchEnabler mWristwatchEnabler; // End by luqiang, topwise, 2014.2.27 [wristwatch config] private final WifiEnabler mWifiEnabler; private final BluetoothEnabler mBluetoothEnabler; private AuthenticatorHelper mAuthHelper; private static class HeaderViewHolder { ImageView icon; TextView title; TextView summary; Switch switch_; } private LayoutInflater mInflater; static int getHeaderType(Header header) { if (header.fragment == null && header.intent == null) { return HEADER_TYPE_CATEGORY; // Start by luqiang, topwise, 2014.2.27 [wristwatch config] } else if (header.id == R.id.wifi_settings || header.id == R.id.bluetooth_settings || header.id == R.id.wristwatch_settings) { // End by luqiang, topwise, 2014.2.27 [wristwatch config] return HEADER_TYPE_SWITCH; } else { return HEADER_TYPE_NORMAL; } } @Override public int getItemViewType(int position) { Header header = getItem(position); return getHeaderType(header); } @Override public boolean areAllItemsEnabled() { return false; // because of categories } @Override public boolean isEnabled(int position) { return getItemViewType(position) != HEADER_TYPE_CATEGORY; } @Override public int getViewTypeCount() { return HEADER_TYPE_COUNT; } @Override public boolean hasStableIds() { return true; } public HeaderAdapter(Context context, List<Header> objects, AuthenticatorHelper authenticatorHelper) { super(context, 0, objects); mAuthHelper = authenticatorHelper; mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // Temp Switches provided as placeholder until the adapter replaces these with actual // Switches inflated from their layouts. Must be done before adapter is set in super mWifiEnabler = new WifiEnabler(context, new Switch(context)); mBluetoothEnabler = new BluetoothEnabler(context, new Switch(context)); // Start by luqiang, topwise, 2014.2.27 [wristwatch config] mWristwatchEnabler = new WristwatchEnabler(context, new Switch(context)); // End by luqiang, topwise, 2014.2.27 [wristwatch config] } @Override public View getView(int position, View convertView, ViewGroup parent) { HeaderViewHolder holder; Header header = getItem(position); int headerType = getHeaderType(header); View view = null; if (convertView == null) { holder = new HeaderViewHolder(); switch (headerType) { case HEADER_TYPE_CATEGORY: view = new TextView(getContext(), null, android.R.attr.listSeparatorTextViewStyle); holder.title = (TextView) view; break; case HEADER_TYPE_SWITCH: view = mInflater.inflate(R.layout.preference_header_switch_item, parent, false); holder.icon = (ImageView) view.findViewById(R.id.icon); holder.title = (TextView) view.findViewById(com.android.internal.R.id.title); holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary); holder.switch_ = (Switch) view.findViewById(R.id.switchWidget); break; case HEADER_TYPE_NORMAL: view = mInflater.inflate( R.layout.preference_header_item, parent, false); holder.icon = (ImageView) view.findViewById(R.id.icon); holder.title = (TextView) view.findViewById(com.android.internal.R.id.title); holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary); break; } view.setTag(holder); } else { view = convertView; holder = (HeaderViewHolder) view.getTag(); } // All view fields must be updated every time, because the view may be recycled switch (headerType) { case HEADER_TYPE_CATEGORY: holder.title.setText(header.getTitle(getContext().getResources())); break; case HEADER_TYPE_SWITCH: // Would need a different treatment if the main menu had more switches if (header.id == R.id.wifi_settings) { mWifiEnabler.setSwitch(holder.switch_); // Start by luqiang, topwise, 2014.2.27 [wristwatch config] } else if (header.id == R.id.wristwatch_settings) { mWristwatchEnabler.setSwitch(holder.switch_); // End by luqiang, topwise, 2014.2.27 [wristwatch config] } else { mBluetoothEnabler.setSwitch(holder.switch_); } // No break, fall through on purpose to update common fields //$FALL-THROUGH$ case HEADER_TYPE_NORMAL: if (header.extras != null && header.extras.containsKey(ManageAccountsSettings.KEY_ACCOUNT_TYPE)) { String accType = header.extras.getString( ManageAccountsSettings.KEY_ACCOUNT_TYPE); ViewGroup.LayoutParams lp = holder.icon.getLayoutParams(); lp.width = getContext().getResources().getDimensionPixelSize( R.dimen.header_icon_width); lp.height = lp.width; holder.icon.setLayoutParams(lp); Drawable icon = mAuthHelper.getDrawableForType(getContext(), accType); holder.icon.setImageDrawable(icon); } else { holder.icon.setImageResource(header.iconRes); } holder.title.setText(header.getTitle(getContext().getResources())); //fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 start if(header.id == R.id.privacy_settings) { if (getContext().getPackageManager().resolveContentProvider(GSETTINGS_PROVIDER, 0) == null) { holder.title.setText(getContext().getResources().getText(R.string.privacy_settings)); } } //fix bug 210641 the text of "backup and reset" not appropriate ,when os did not support backup on 2013.9.4 end CharSequence summary = header.getSummary(getContext().getResources()); if (!TextUtils.isEmpty(summary)) { holder.summary.setVisibility(View.VISIBLE); holder.summary.setText(summary); } else { holder.summary.setVisibility(View.GONE); } break; } return view; } public void resume() { mWifiEnabler.resume(); mBluetoothEnabler.resume(); // Start by luqiang, topwise, 2014.2.27 [wristwatch config] mWristwatchEnabler.resume(); // End by luqiang, topwise, 2014.2.27 [wristwatch config] } public void pause() { mWifiEnabler.pause(); mBluetoothEnabler.pause(); // Start by luqiang, topwise, 2014.2.27 [wristwatch config] mWristwatchEnabler.pause(); // End by luqiang, topwise, 2014.2.27 [wristwatch config] } } @Override public void onHeaderClick(Header header, int position) { boolean revert = false; if (header.id == R.id.account_add) { revert = true; } //start,added by topwise hehuadong in 2014.01.16 if (TopwiseProp.getDefaultSettingString("default_customize_about_device")!=null){ if (header != null && header.fragment != null && header.fragment.equals("com.android.settings.DeviceInfoSettings")){ header.fragment="com.android.settings.AboutDeviceSettings"; } } //end,added by topwise hehuadong in 2014.01.16 super.onHeaderClick(header, position); if (revert && mLastHeader != null) { // fix bug 200478 to avoid list scroll when account_add item selected on 20130810 begin //highlightHeader((int) mLastHeader.id); // fix bug 200478 to avoid list scroll when account_add item selected on 20130810 end } else { mLastHeader = header; } } @Override public boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref) { // Override the fragment title for Wallpaper settings int titleRes = pref.getTitleRes(); if (pref.getFragment().equals(WallpaperTypeSettings.class.getName())) { titleRes = R.string.wallpaper_settings_fragment_title; } startPreferencePanel(pref.getFragment(), pref.getExtras(), titleRes, pref.getTitle(), null, 0); return true; } public boolean shouldUpRecreateTask(Intent targetIntent) { return super.shouldUpRecreateTask(new Intent(this, Settings.class)); } @Override public void setListAdapter(ListAdapter adapter) { if (adapter == null) { super.setListAdapter(null); } else { super.setListAdapter(new HeaderAdapter(this, getHeaders(), mAuthenticatorHelper)); } } @Override public void onAccountsUpdated(Account[] accounts) { mAuthenticatorHelper.onAccountsUpdated(this, accounts); invalidateHeaders(); } //add by daiwei for tab settings static final int COLOR_SELECTED = 0xff0b984c; static final int COLOR_UNSELECTED = 0xff000000; static final int TEXT_SIZE_SELECTED = 18; static final int TEXT_SIZE_UNSELECTED = 16; private ImageView mTabCursor = null; private ViewPager mViewPager = null; private TextView mTabGeneral = null; private TextView mTabDisplay = null; private OnPageChangeListener mPageChangeListener = new OnPageChangeListener() { @Override public void onPageScrollStateChanged(int state) { if (state == ViewPager.SCROLL_STATE_IDLE) { mTabCursor.setX(mViewPager.getCurrentItem() * mTabCursor.getWidth()); } } @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { if (positionOffset == 0.0f) return; mTabCursor.setX(positionOffset * mTabCursor.getWidth()); } @Override public void onPageSelected(int position) { if (0 == position) { mTabGeneral.setTextColor(COLOR_SELECTED); mTabGeneral.setTextSize(TEXT_SIZE_SELECTED); mTabDisplay.setTextColor(COLOR_UNSELECTED); mTabDisplay.setTextSize(TEXT_SIZE_UNSELECTED); } else if (1 == position) { mTabGeneral.setTextColor(COLOR_UNSELECTED); mTabGeneral.setTextSize(TEXT_SIZE_UNSELECTED); mTabDisplay.setTextColor(COLOR_SELECTED); mTabDisplay.setTextSize(TEXT_SIZE_SELECTED); } } }; public class ViewPagerAdapter extends FragmentPagerAdapter { public ViewPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int position) { switch(position) { case 0: return new SettingsFragment(); case 1: return new DisplaySettings(); } return null; } @Override public int getCount() { return 2; } } private OnClickListener mTabOnClickListener = new OnClickListener() { @Override public void onClick(View v) { if (v.getId() == R.id.tab_general) { mViewPager.setCurrentItem(0); } else if (v.getId() == R.id.tab_display) { mViewPager.setCurrentItem(1); } } }; //end by daiwei /* * Settings subclasses for launching independently. */ public static class BluetoothSettingsActivity extends Settings { /* empty */ } public static class WirelessSettingsActivity extends Settings { /* empty */ } public static class TetherSettingsActivity extends Settings { /* empty */ } public static class VpnSettingsActivity extends Settings { /* empty */ } public static class DateTimeSettingsActivity extends Settings { /* empty */ } public static class StorageSettingsActivity extends Settings { /* empty */ } public static class WifiSettingsActivity extends Settings { /* empty */ } public static class WifiP2pSettingsActivity extends Settings { /* empty */ } public static class InputMethodAndLanguageSettingsActivity extends Settings { /* empty */ } public static class KeyboardLayoutPickerActivity extends Settings { /* empty */ } public static class InputMethodAndSubtypeEnablerActivity extends Settings { /* empty */ } public static class SpellCheckersSettingsActivity extends Settings { /* empty */ } public static class LocalePickerActivity extends Settings { /* empty */ } public static class UserDictionarySettingsActivity extends Settings { /* empty */ } public static class SoundSettingsActivity extends Settings { /* empty */ } public static class DisplaySettingsActivity extends Settings { /* empty */ } public static class DeviceInfoSettingsActivity extends Settings { /* empty */ } public static class ApplicationSettingsActivity extends Settings { /* empty */ } public static class ManageApplicationsActivity extends Settings { /* empty */ } public static class StorageUseActivity extends Settings { /* empty */ } public static class DevelopmentSettingsActivity extends Settings { /* empty */ } public static class AccessibilitySettingsActivity extends Settings { /* empty */ } public static class SecuritySettingsActivity extends Settings { /* empty */ } public static class LocationSettingsActivity extends Settings { /* empty */ } public static class PrivacySettingsActivity extends Settings { /* empty */ } public static class DockSettingsActivity extends Settings { /* empty */ } public static class RunningServicesActivity extends Settings { /* empty */ } public static class ManageAccountsSettingsActivity extends Settings { /* empty */ } public static class PowerUsageSummaryActivity extends Settings { /* empty */ } public static class AccountSyncSettingsActivity extends Settings { /* empty */ } public static class AccountSyncSettingsInAddAccountActivity extends Settings { /* empty */ } public static class CryptKeeperSettingsActivity extends Settings { /* empty */ } public static class DeviceAdminSettingsActivity extends Settings { /* empty */ } public static class DataUsageSummaryActivity extends Settings { /* empty */ } public static class AdvancedWifiSettingsActivity extends Settings { /* empty */ } public static class TextToSpeechSettingsActivity extends Settings { /* empty */ } public static class AndroidBeamSettingsActivity extends Settings { /* empty */ } } 本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5032416.html,如需转载请自行联系原作者

优秀的个人博客,低调大师

zabbix - 对接钉钉机器人接口

一:下载发送程序 zabbix 钉钉报警机器人 - 向钉钉群聊中发送报警消息 (go语言写的脚本,可用 -h查看选项) 测试: ./golang-zabbix-robot-64 -webhook='https://oapi.dingtalk.com/roboxxxxxxxx' 此时你的机器人会发送一个来自于千思网的消息,此时说明golong可用。 接下来就要区分你的zabbix的版本了,以下分别是3.0 3.2 2.4的配置方式 二:zabbix3.0 配置 1、部署程序 将go脚本拷贝至服务端警告目录AlertScriptspath下,添加执行权限。 2、创建报警媒介 3、添加用户或组,加入报警媒介 4、创建动作,创建触发发送条件 三:zabbix3.2 配置 3.2和3.0配置大致一样,只是有部分会发生消息送不到的情况,尝试将上述xml格式的换行去掉后重新测试。 附录: 报警信息<?xml version="1.0" encoding="UTF-8" ?> <root> <from>{HOSTNAME1}</from> <time>{EVENT.DATE} {EVENT.TIME}</time> <level>{TRIGGER.SEVERITY}</level> <name>{TRIGGER.NAME}</name> <key>{TRIGGER.KEY1}</key> <value>{ITEM.VALUE}</value> <now>{ITEM.LASTVALUE}</now> <id>{EVENT.ID}</id> <ip>{HOST.IP}</ip> <url>这里是点击报警消息可以访问的链接地址</url> <age>{EVENT.AGE}</age> <status>{EVENT.STATUS}</status> <acknowledgement> {EVENT.ACK.STATUS} </acknowledgement> <acknowledgementhistory> {EVENT.ACK.HISTORY}</acknowledgementhistory> </root> 恢复信息<?xml version="1.0" encoding="UTF-8" ?> <root> <from>{HOSTNAME1}</from> <time>{EVENT.DATE} {EVENT.TIME}</time> <level>{TRIGGER.SEVERITY}</level> <name>{TRIGGER.NAME}</name> <key>{TRIGGER.KEY1}</key> <value>{ITEM.VALUE}</value> <now>{ITEM.LASTVALUE}</now> <id>{EVENT.ID}</id> <ip>{HOST.IP}</ip> <color>FF4A934A</color> <url>这里的url会替换报警媒介的url</url> <age>{EVENT.AGE}</age> <recoveryTime>{EVENT.RECOVERY.DATE} {EVENT.RECOVERY.TIME}</recoveryTime> <status>{EVENT.RECOVERY.STATUS}</status> </root> 四:zabbix 2.4 配置 相对于3版本,2.4 虽经典但是却有点跟不上时代了,公司为了保持稳定,也不敢贸然升级,所以只能对 2.4进行相应的配置了。 1、部署程序 同样在警告目录AlertScriptspath下,添加脚本 zabbix-dingding.sh #!/bin/bash webhook="https://oapi.dingtalk.com/robot/send?access_token=xxx" /zabbix/share/zabbix/alertscripts/golang-zabbix-robot-64 -webhook=$webhook -msg="$3" 2、创建报警媒介 3、创建用户或组,加入报警媒介,同上 4、创建动作,创建触发发送条件,采用3.2格式,不换行 ----------------------------------------------------------------------------------------- 附加:通用机器人 有时我们会用自定义的监控脚本,去监控服务状态,或者某个程序等等,怎么对接到钉钉呢? #!/usr/bin/env python#coding=utf-8import urllibimport urllib2import jsonimport ref = open('xxxxxxxxxx','r') #取文件的内容发送your_data = f.read()f.close()#print your_dataheaders = {'Content-Type': 'application/json'}test_data = { 'msgtype':"text", "text":{ 'content':"%s" % your_data}, "at":{ "atMobiles":[ # "you iphone" ], "isAtAll":"false"}}#requrl = "https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxx"req = urllib2.Request(url = requrl,headers = headers,data = json.dumps(test_data))response = urllib2.urlopen(req)

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

Nacos

Nacos

Nacos /nɑ:kəʊs/ 是 Dynamic Naming and Configuration Service 的首字母简称,一个易于构建 AI Agent 应用的动态服务发现、配置管理和AI智能体管理平台。Nacos 致力于帮助您发现、配置和管理微服务及AI智能体应用。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据、流量管理。Nacos 帮助您更敏捷和容易地构建、交付和管理微服务平台。

Spring

Spring

Spring框架(Spring Framework)是由Rod Johnson于2002年提出的开源Java企业级应用框架,旨在通过使用JavaBean替代传统EJB实现方式降低企业级编程开发的复杂性。该框架基于简单性、可测试性和松耦合性设计理念,提供核心容器、应用上下文、数据访问集成等模块,支持整合Hibernate、Struts等第三方框架,其适用范围不仅限于服务器端开发,绝大多数Java应用均可从中受益。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

用户登录
用户注册