自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (12)
  • 收藏
  • 关注

原创 nigx负载均衡的配置关键位置

upstream localhost{ ip_hash; server 172.xx.1x3.69:7071 weight=2; server 172.xx.1x3.69:7072 weight=2; server 172.xx.1x3.69:7073 weight=1; server 172.xx.1x3.70:8081 weight=2; server 1

2017-04-20 15:58:52 717

js编写工具

js sublimejs sublimejs sublimejs sublimejs sublimejs sublime

2018-04-11

mina spring mybatis

mina数据传输解析

2016-08-26

数据抓取工具包

数据抓取工具包

2014-04-03

网页抓取工具

抓取根据关键字来进行数据抽取

2014-04-02

android 仿360布局

android 仿360布局

2014-03-14

左右切换菜单

/* * Copyright (C) 2012 yueyueniao * * 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.example.slidingmenu.activity; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentTransaction; import android.view.KeyEvent; import com.example.slidingmenu.R; import com.example.slidingmenu.fragment.LeftFragment; import com.example.slidingmenu.fragment.RightFragment; import com.example.slidingmenu.fragment.ViewPageFragment; import com.example.slidingmenu.fragment.ViewPageFragment.MyPageChangeListener; import com.example.slidingmenu.view.SlidingMenu; public class SlidingActivity extends FragmentActivity { SlidingMenu mSlidingMenu; LeftFragment leftFragment; RightFragment rightFragment; ViewPageFragment viewPageFragment; @Override protected void onCreate(Bundle arg0) { super.onCreate(arg0); setContentView(R.layout.main); init(); initListener(); } private void init() { mSlidingMenu = (SlidingMenu) findViewById(R.id.slidingMenu); mSlidingMenu.setLeftView(getLayoutInflater().inflate( R.layout.left_frame, null)); mSlidingMenu.setRightView(getLayoutInflater().inflate( R.layout.right_frame, null)); mSlidingMenu.setCenterView(getLayoutInflater().inflate( R.layout.center_frame, null)); FragmentTransaction t = this.getSupportFragmentManager() .beginTransaction(); leftFragment = new LeftFragment(); t.replace(R.id.left_frame, leftFragment); rightFragment = new RightFragment(); t.replace(R.id.right_frame, rightFragment); viewPageFragment = new ViewPageFragment(); t.replace(R.id.center_frame, viewPageFragment); t.commit(); } private void initListener() { viewPageFragment.setMyPageChangeListener(new MyPageChangeListener() { // 判断是否可以滑动 @Override public void onPageSelected(int position) { if (viewPageFragment.isFirst()) { mSlidingMenu.setCanSliding(true, false); } else if (viewPageFragment.isEnd()) { mSlidingMenu.setCanSliding(false, true); } else { mSlidingMenu.setCanSliding(false, false); } } }); } public void showLeft() { mSlidingMenu.showLeftView(); } public void showRight() { mSlidingMenu.showRightView(); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { if (mSlidingMenu.getLeftVisbility()) { mSlidingMenu.showLeftView(); } else if (mSlidingMenu.getRightVisbility()) { mSlidingMenu.showRightView(); } else { finish(); } return true; } return false; } }

2014-03-14

短信开发接口包

短信开发接口包

2013-11-11

打印控件lodop

Lodop是一款专业的WEB打印控件,其设计目标是简单易用、功能足够强大,开创WEB打印开发的新局面。

2013-11-11

kettle结合润乾ppt

整合部署,F:\soft\pdi-ce-4.3.0-stable\data-integration\Kitchen.bat /norep /file F:\Etl\ywxn.kjb,把该语句保存为.bat文件并添加到定时任务,每天几点启动数据抓取程序,完成部署。

2012-12-17

润乾&&kettkle;项目开发实战技术文档

整合部署,F:\soft\pdi-ce-4.3.0-stable\data-integration\Kitchen.bat /norep /file F:\Etl\ywxn.kjb,把该语句保存为.bat文件并添加到定时任务,每天几点启动数据抓取程序,完成部署。

2012-12-17

mysql驱动包

mysql驱动包

2012-09-03

UI设计草图

UI设计草图

2012-03-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除