linux Linux 下三种方式设置环境变量

1、在Windows 系统下,很多软件安装都需要配置环境变量,比如 安装 jdk ,如果不配置环境变量,在非软件安装的目录下运行javac 命令,将会报告找不到文件,类似的错误。 2、那么什么是环境变...

2022-12-10 261 阅读

linux 【linux】设置镜像源

首先找到默认的源 $cd /etc/apt $cp source.list source.list_default 然后替换掉source.list文件为国内源。 清华大学镜像站:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ ★将你的...

2022-12-10 244 阅读

Git的错误error: Failed connect to github.com:443;解决办法

最近在学习git的使用,在建立本地git库并申请了远程GitHub库,想要将本地库关联我的远程库。就使用以下命令:git remote add origin https://github.com/Username/git.git注:将Username更换...

2022-12-10 395 阅读

终端运行.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:...

2022-12-10 356 阅读

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...

2022-12-10 260 阅读

linux Linux Gradle 安装

安装步骤 下载gradle安装包 解压安装包 设置环境变量 可以到官网,查看具体install详情。 1. 下载gradle安装包 wget https://downloads.gradle.org/distributions/gradle-4.4.1-all.zip...

2022-12-10 470 阅读

Android 使用VLC-Android写一个简单的电视直播demo【使用别人编译好vlc,直接使用gradle引用即可】

使用VLC-Android写一个简单的电视直播demo近两年每天各种新的“干货”出来,可以说真的是百花齐放百家争鸣,每天也有各种各样不同的文章在简书和各大平台上崭露头角。而我就比较吃...

2022-12-10 594 阅读

Android Android隐藏标题栏的四种方法

1. 使用actionBar.hide()方法public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceStat...

2022-12-10 1064 阅读

Android Android的单击双击事件

package com.dianchou.dcw.view.main.point; import android.os.Handler; import android.view.MotionEvent; import android.view.View; /** * 创建者    yf * 创建时间  2...

2022-12-10 322 阅读