linux Linux 下三种方式设置环境变量
1、在Windows 系统下,很多软件安装都需要配置环境变量,比如 安装 jdk ,如果不配置环境变量,在非软件安装的目录下运行javac 命令,将会报告找不到文件,类似的错误。 2、那么什么是环境变...
linux 【linux】设置镜像源
首先找到默认的源 $cd /etc/apt $cp source.list source.list_default 然后替换掉source.list文件为国内源。 清华大学镜像站:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ ★将你的...
Git的错误error: Failed connect to github.com:443;解决办法
最近在学习git的使用,在建立本地git库并申请了远程GitHub库,想要将本地库关联我的远程库。就使用以下命令:git remote add origin https://github.com/Username/git.git注:将Username更换...
终端运行.sh报错:***.sh: 2: set: Illegal option -
***.sh: 2: set: Illegal option -终端运行.sh报错:***.sh: 2: set: Illegal option -solution:Remove trailing \r character that causes this error:command终端运行.sh报错:***.sh: 2:...
linux Linux 编译vlc
Setup Check our AndroidCompile wiki page, especially for build dependencies. Here are the essential points: On Debian/Ubuntu, install the required dependencies: sudo apt install...
linux Linux Gradle 安装
安装步骤 下载gradle安装包 解压安装包 设置环境变量 可以到官网,查看具体install详情。 1. 下载gradle安装包 wget https://downloads.gradle.org/distributions/gradle-4.4.1-all.zip...
linux linux shell脚本无法执行,报错syntax error near unexpected token `$'\r''解决方法
sed -i 's/\r//g' javaInstall.sh
Android 使用VLC-Android写一个简单的电视直播demo【使用别人编译好vlc,直接使用gradle引用即可】
使用VLC-Android写一个简单的电视直播demo近两年每天各种新的“干货”出来,可以说真的是百花齐放百家争鸣,每天也有各种各样不同的文章在简书和各大平台上崭露头角。而我就比较吃...
Android Android隐藏标题栏的四种方法
1. 使用actionBar.hide()方法public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceStat...
Android Android的单击双击事件
package com.dianchou.dcw.view.main.point; import android.os.Handler; import android.view.MotionEvent; import android.view.View; /** * 创建者 yf * 创建时间 2...