随便新建一个文件夹,存放代码 新建一个java文件 文件后缀名为.java Hello.java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("hello world!"); } ...
分类:
其他好文 时间:
2021-06-06 18:52:26
阅读次数:
0
一、下载node.js 1.访问node.js官方网站,如下图选择下载 大多数人使用的版本 2.下载后如下图 3.点击安装即可,可以更改盘符 4.点击 Next 下一步 5.点击 Finish 完成安装 6.即可在D盘nodejs目录中查看安装信息 7.验证安装是否完成 在命令提示符中输入 echo ...
分类:
Web程序 时间:
2021-06-04 19:22:44
阅读次数:
0
1 官网下jar包,搭工程(略) http://cxf.apache.org/ 2 代码 package com.mangoubiubiu.cxf.test; import javax.jws.WebService; @WebService //对外发布服务 public interface Hel ...
分类:
Web程序 时间:
2021-06-02 19:21:52
阅读次数:
0
adb start-server 开启adb服务 adb kill-server 杀死adb服务 adb uninstall + 包名 卸载应用 adb uninstall com.itheima.helloworld adb install + apk所在的路径 安装应用 adb install ...
分类:
其他好文 时间:
2021-06-02 19:16:59
阅读次数:
0
Spring Boot的特点 1.依赖管理 父项目做依赖管理 <!-- HelloWorld项目的父项目 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</ ...
分类:
编程语言 时间:
2021-06-02 17:50:55
阅读次数:
0
npm源改为国内 此方法不需要安装cnpm也可以使用淘宝镜像,提高国内访问速度 由于 Node 的官方模块仓库网速太慢,模块仓库需要切换到阿里的源。 npm config set registry https://registry.npm.taobao.org/ 执行下面的命令,确认是否切换成功。 ...
分类:
Web程序 时间:
2021-06-02 17:08:19
阅读次数:
0
const cheerio = require("cheerio") const axios = require("axios") const fs = require("fs") if (!fs.existsSync("download")) { fs.mkdirSync("download", ...
分类:
Web程序 时间:
2021-06-02 17:04:51
阅读次数:
0
public class HelloWorld { public static void main(String[] args) { //大小写十分敏感 String Man="qinjiang"; String man="qinjiang"; String Ahello="qinjiang"; S ...
分类:
其他好文 时间:
2021-06-02 16:40:41
阅读次数:
0
pip绝大部分的第三方库都可以用pip来安装,用起来很方便。但是如果我们要把项目部署到服务器上面的话,就稍微有些麻烦了,因为还需要在服务器上用pip安装这些包,假如项目中用到很多包的话,一个个安装会很麻烦,而且没有通用性。 Java上的maven、gradle,NodeJS的npm这些工具就不存在这 ...
分类:
其他好文 时间:
2021-06-02 14:41:52
阅读次数:
0
shell 在线编辑器:https://www.runoob.com/try/runcode.php?filename=helloworld&type=bash 一下脚本自行测试查看结果 echo "Hello World !" your_name="qinjx" echo your_name fo ...
分类:
系统相关 时间:
2021-05-24 17:21:02
阅读次数:
0