上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页
摘要: 1、查询看系统版本 cat /etc/redhat-release 2、安装openjdK yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel 安装vim: yum -y install vim 3、安装MongoDB: 安装社区版 阅读全文
posted @ 2019-04-22 22:34 凉城 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Ctrl+Shift + Enter,语句完成“!”,否定完成,输入表达式时按 “!”键Ctrl+E,最近的文件Ctrl+Shift+E,最近更改的文件Shift+Click,可以关闭文件Ctrl+[ OR ],可以跑到大括号的开头与结尾Ctrl+F12,可以显示当前文件的结构Ctrl+F7,可以查 阅读全文
posted @ 2019-04-04 17:14 凉城 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 微服务架构没有公认的技术标准和规范或者草案,但业界已经有一些很有影响力的开源微服务架构框架提供了微服务的关键思路,例如 Dubbo 和 Spring Cloud。 目前微服务实现方式主要有两种Dubbo和SpringCloud: 一、Dubbo:(https://www.cnblogs.com/li 阅读全文
posted @ 2019-03-15 13:51 凉城 阅读(1159) 评论(0) 推荐(1) 编辑
摘要: app.controller('mapSignController',function($scope,$rootScope,Message, $window,$uibModalInstance){ var script = document.createElement("script"); script.src = 'http://api.map.baidu.co... 阅读全文
posted @ 2019-03-03 10:41 凉城 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import requests import re import os import time from aip import AipSpeech from tkinter import * from tkinter import ttk import tkinter.messagebox #参数 类型 描述 是否必须 #t... 阅读全文
posted @ 2019-02-26 11:38 凉城 阅读(4686) 评论(1) 推荐(0) 编辑
摘要: 如下: InputStream in = new URL("http://www.updown/thumbnail.jpg).openStream(); Path temp = Paths.get("temp.png"); Files.copy(in,temp,StandardCopyOption. 阅读全文
posted @ 2019-02-23 11:45 凉城 阅读(878) 评论(0) 推荐(0) 编辑
摘要: 1、使用pip install Pyinstaller 命令安装 2、使用命令 pyinstaller -F *.py打包成exe 3、在\dist文件夹下找到exe; 一、pyinstaller相关参数 -F, –onefile 打包一个单个文件,如果你的代码都写在一个.py文件的话,可以用这个, 阅读全文
posted @ 2019-02-18 14:05 凉城 阅读(1936) 评论(0) 推荐(0) 编辑
摘要: 添加依赖: apply plugin: 'org.springframework.boot'apply plugin: 'io.spring.dependency-management' springBoot { executable = true mainClass = 'com.test.App 阅读全文
posted @ 2019-02-16 14:52 凉城 阅读(1523) 评论(0) 推荐(0) 编辑
摘要: 1、下载golang安装包: 下载地址:https://golang.google.cn/dl/ 2、安装Eclipse 下载goclipse 插件 3、配置 Go 的编译器 4、写代码. 阅读全文
posted @ 2019-02-16 14:06 凉城 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 基于JDK 1.8 1、循环: 2、匿名内部类: // 使用匿名内部类 btn.setOnAction(new EventHandler<ActionEvent>() { @Override public void handle(ActionEvent event) { System.out.pri 阅读全文
posted @ 2019-01-28 15:54 凉城 阅读(359) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 23 下一页