大数据 | 实验一:大数据系统基本实验 | 熟悉常用的HBase操作

news2024/11/19 3:16:20

文章目录

  • 📚HBase安装
    • 🐇安装HBase
    • 🐇伪分布式模式配置
    • 🐇测试运行HBase
    • 🐇HBase java API编程环境配置
  • 📚实验目的
  • 📚实验平台
  • 📚实验内容
    • 🐇HBase Shell + 编程命令实现以下指定功能
      • 🥕HBase Shell部分
      • 🥕编程实现
    • 🐇HBase 数据库操作
      • 🥕学生表
      • 🥕课程表
      • 🥕选课表
    • 🐇编程实现功能

📚HBase安装

前期准备:下载hbase-2.4.10-bin.tar.gz, HBase下载

🐇安装HBase

先把HBase拖进虚拟机,参考实验零的相关操作

解压到目录下

sudo tar zxvf hbase-2.4.10-bin.tar.gz -C /usr/local 
cd /usr/local #进入该目录
mv hbase hbase-2.4.10 hbase #重命名为 hbase 文件名规范
sudo chown -R hdoop ./hbase #将 hbase 目录权限赋予 hadop 用户

配置hbase环境变量

vim ~/.bashrc
  • 在~/.bashrc 中找到原来配置的 PATH,并添加下列代码:/usr/local/hbase/bin
  • PATH最终效果:export PATH=${JAVA_HOME}/bin:/usr/local/hbase/bin/:$PATH

更新配置,并测试是否安装成功

source ~/.bashrc #使新配置的环境变量生效
/usr/local/hbase/bin/hbase version #检测是否安装成功,查看hbase 版本

在这里插入图片描述

🐇伪分布式模式配置

配置/usr/local/hbase/conf/hbase-env.sh

vim /usr/local/hbase/conf/hbase-env.sh #打开文件

添加如下代码

export JAVA_HOME=/usr/lib/jvm/java
export HBASE_CLASSPATH=/usr/local/hbase/conf 
export HBASE_MANAGES_ZK=true

配置/usr/local/hbase/conf/hbase-site.xml

vim /usr/local/hbase/conf/hbase-site.xml #打开文件

进行如下配置修改

<configuration>
 	<property>
		<name>hbase.rootdir</name>
		<value>hdfs://localhost:9000/hbase</value>
 	</property>
 	<property>
 		<name>hbase.cluster.distributed</name>
 		<value>true</value>
 	</property>
 	<property>
 		<name>hbase.unsafe.stream.capability.enforce</name>
 		<value>false</value>
 	</property>
</configuration>

🐇测试运行HBase

启动Hadoopstart-dfs.sh
在这里插入图片描述
启动HBase

cd /usr/local/hbase
bin/start-hbase.sh

进入Shell界面bin/hbase shell
在这里插入图片描述

HBase停止命令(我一般只挂起不停止,emmm

  • exit #退出 Shell 界面
  • bin/stop-hbase.sh #停止 Hbase

🐇HBase java API编程环境配置

该部分参考博客,这一步主要是导入相关的JAVA包,不然之后相关头文件都报错。

启动Eclipse,Eclipse的相关配置见实验零

创建java Project HBaseExample

  • 右键new一个project

在这里插入图片描述

  • 在“JRE”选项卡中选中第2项“Use a project specific JRE”,然后点击界面底部的“Next”按钮。

在这里插入图片描述

  • 在弹出的界面中(如下图所示),用鼠标点击“Libraries”选项卡,然后,点击界面右侧的“Add External JARs…”按钮。

在这里插入图片描述

  • 在弹出的“JAR Selection”界面中(如下图所示),进入到“/usr/local/hbase/lib”目录(在+ Other Locations里找),选中该目录下的所有jar文件(注意,不要选中client-facing-thirdparty、ruby、shaded-clients和zkcli这四个目录),然后,点击界面上方的“Open”按钮。

在这里插入图片描述

  • 点完Open后会退出去,然后,再点界面右侧的“Add External JARs…”按钮。在“JAR Selection”界面中(如下图所示),点击进入到“client-facing-thirdparty”目录下。

在这里插入图片描述

  • 全选中再点Open。

在这里插入图片描述

  • 最后,再点击界面(如下图所示)底部的“Finish”按钮。

在这里插入图片描述

📚实验目的

1)理解 HBase 在 Hadoop 体系结构中的角色。

2)熟练使用 HBase 操作常用的 shell 命令。

3)熟悉 HBase 操作常用的 Java API。

📚实验平台

1)操作系统:Linux;

2)Hadoop 版本:3.2.2;

3)HBase 版本:1.2.6;

4)JDK 版本:1.8;

5)Java IDE:Eclipse。

📚实验内容

🐇HBase Shell + 编程命令实现以下指定功能

  • 启动Hadoop:start-dfs.sh
  • 启动HBase
    - cd /usr/local/hbase
    - bin/start-hbase.sh
  • 进入shell界面: bin/hbase shell

🥕HBase Shell部分

🔔列出 HBase 所有的表的相关信息,例如表名
在这里插入图片描述

用HBase Shell创建表时出错,参考解决博客
在这里插入图片描述

🔔在终端打印出指定的表的所有记录数据
在这里插入图片描述
🔔向已经创建好的表添加和删除指定的列族或列
在这里插入图片描述
🔔清空指定的表的所有记录数据
在这里插入图片描述
🔔统计表的行数

为更明显,本题是在第4题还没进行的时候截的图

在这里插入图片描述

🥕编程实现

package hbase;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.client.ClusterConnection;
import org.apache.hadoop.hbase.*;
import org.apache.hadoop.hbase.client.*;
import org.apache.hadoop.hbase.util.Bytes;
import java.io.IOException;
import java.util.Scanner;
public class basic_hbase 
{
    public static Configuration configuration;
    public static Connection connection;
    public static Admin admin;
    public static long ts;
    static Scanner sc=new Scanner(System.in);
    public static void main(String[] args) throws IOException
    {
        while (true)
        {
            System.out.println("1.列出所有表的信息;");
            System.out.println("2.打印指定表的所有记录数据;");
            System.out.println("3.向创建好的表添加或删除指定的列族或列;");
            System.out.println("4.清空指定表的所有记录数据;");
            System.out.println("5.统计表的行数;");
            System.out.println("输入你的选择:");

            int no=sc.nextInt();
            if (no==1)
            {
                First();
            }
            else if(no==2)
            {
                System.out.println("输入你要查询的表:");
                String tablename=sc.next();
                Second(tablename);
            }
            else if (no==3)
            {
                System.out.println("请输入要操作的表名");
                String tablename=sc.next();
                System.out.println("请输入要操作的表的行键");
                String rowKey=sc.next();
                System.out.println("请输入你要操作的列族名:");
                String colFamily=sc.next();
                System.out.println("输入你要操作的列名:");
                String col=sc.next();
                System.out.println("输入你要操作的参数值:");
                String val=sc.next();
                Third(tablename,rowKey,colFamily,col,val);
            }
            else if (no==4)
            {
                System.out.println("输入你要操作的表:");
                String tablename=sc.next();
                Fourth(tablename);
                System.out.println("成功清空!");
            }
            else if (no==5)
            {
                System.out.println("输入你要操作的表:");
                String tablename=sc.next();
                fift(tablename);
            }
        }
    }
    public static void init()
    {
        configuration  = HBaseConfiguration.create();
        configuration.set("hbase.rootdir","hdfs://localhost:9000/hbase");
        try{
            connection = ConnectionFactory.createConnection(configuration);
            admin = connection.getAdmin();
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
    }
    public static void close()
    {
        try{
            if(admin != null)
            {
                admin.close();
            }
            if(null != connection)
            {
                connection.close();
            }
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
    }
	public static void First() throws IOException
	{//列出所有表的信息;
        init();
		HTableDescriptor hTableDescriptor[]=admin.listTables();
        for (HTableDescriptor s:hTableDescriptor ){
            System.out.println(s.getNameAsString());
        }
        close();
    }
    public static void Second(String tablename) throws IOException
    {//打印指定表的所有记录数据;
        init();
        Table table=connection.getTable(TableName.valueOf(tablename));
        Scan scan=new Scan();
        ResultScanner res=table.getScanner(scan);
        for (Result result:res)
        {
            showCell(result);
        }
    }
    public static void Third(String tableName, String row, String column,String c ,String val) throws IOException
    {//向创建好的表添加或删除指定的列族或列;
        System.out.println("1、添加列;2、删除列");
        int no=sc.nextInt();
        if (no==1)
        {
            insertRow(tableName,row,column,c,val);
        }
        else if (no==2)
        {
            deleteRow(tableName,row,column,c);
        }
    }
    public static void Fourth(String tablename) throws IOException
    {//清空指定表的所有记录数据;
        init();
        TableName tableName=TableName.valueOf(tablename);
        admin.disableTable(tableName);
        admin.deleteTable(tableName);
        close();
    }
    public static void fift(String tablename) throws IOException
    {//统计表的行数;
        init();
        Table table=connection.getTable(TableName.valueOf(tablename));
        Scan scan=new Scan();
        ResultScanner scanner=table.getScanner(scan);
        int n=0;
        for (Result result=scanner.next();result!=null;result=scanner.next())
        {
            n++;
        }
        System.out.println("行数有"+n);
        scanner.close();
        close();
    }
    public static void insertRow(String tableName, String row, String column,String c ,String val) throws IOException 
    {
        init();
        Table table=connection.getTable(TableName.valueOf(tableName));
        Put put=new Put(row.getBytes());
        put.addColumn(column.getBytes(), c.getBytes(), val.getBytes());
        table.put(put);
        System.out.println("成功添加!");
        table.close();
        close();
    }
    public static void deleteRow(String tableName, String row, String column,String c) throws IOException
    {
        init();
        Table table=connection.getTable(TableName.valueOf(tableName));
        System.out.println("1、删除列族;2、删除列名");
        Scanner sc=new Scanner(System.in);
        int no=sc.nextInt();
        Delete delete=new Delete(row.getBytes());
        if (no==1)
        {
            delete.addFamily(Bytes.toBytes(column));
            System.out.println("成功删除"+column+"这个列族");
        }else if(no==2)
        {
            delete.addColumn(Bytes.toBytes(column), Bytes.toBytes(c));
            System.out.println("成功删除"+c+"这个列名");
        }
        table.delete(delete);
        table.close();
        close();
    }
    public static void showCell(Result result)
    {
        Cell[] cells = result.rawCells();
        for(Cell cell:cells)
        {
            System.out.println("RowName(行键):"+new String(CellUtil.cloneRow(cell))+" ");
            System.out.println("Timetamp(时间戳):"+cell.getTimestamp()+" ");
            System.out.println("column Family(列族):"+new String(CellUtil.cloneFamily(cell))+" ");
            System.out.println("column Name(列名):"+new String(CellUtil.cloneQualifier(cell))+" ");
            System.out.println("value:(值)"+new String(CellUtil.cloneValue(cell))+" ");
        }
    }
}

🐇HBase 数据库操作

在这里插入图片描述

🥕学生表

🔔建学生表

在这里插入图片描述
🔔学生表数据添加

在这里插入图片描述
在这里插入图片描述

🥕课程表

🔔建课程表

在这里插入图片描述
🔔课程表数据添加

在这里插入图片描述
在这里插入图片描述

🥕选课表

🔔建选课表

在这里插入图片描述
🔔选课表数据添加

在这里插入图片描述

在这里插入图片描述

🐇编程实现功能

在这里插入图片描述

package hbase;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.CellUtil;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.util.Bytes;
@SuppressWarnings("deprecation")
public class hbase
{
	public static Configuration configuration;
	    public static Connection connection;
	    public static Admin admin;
	 //建立连接
	    public static void init()
	    {
	        configuration  = HBaseConfiguration.create();
	        configuration.set("hbase.rootdir","hdfs://localhost:9000/hbase");
	        try
	        {
	            connection = ConnectionFactory.createConnection(configuration);
	            admin = connection.getAdmin();
	        }
	        catch (IOException e)
	        {
	            e.printStackTrace();
	        }
	    }
	    //关闭连接
	    public static void close()
	    {
	        try
	        {
	            if(admin != null)
	            {
	                admin.close();
	            }
	            if(null != connection)
	            {
	                connection.close();
	            }
	        }
	        catch (IOException e)
	        {
	            e.printStackTrace();
	        }
	    }
    /**
     * 建表。参数tableName为表的名称,字符串数组fields为存储记录各个域名称的数组。
     * 要求当HBase已经存在名为tableName的表时,先删除原有的表,然后再创建新的表  field:列族
     * @param myTableName 表名
     * @param colFamily 列族名
     * @throws IOException
     */
    public static void createTable(String tableName,String[] fields) throws IOException 
    {
        init();
        TableName tablename = TableName.valueOf(tableName);
        if(admin.tableExists(tablename))
        {
            System.out.println("表已存在,将执行删除原表,重建新表!");
            admin.disableTable(tablename);
            admin.deleteTable(tablename);//删除原来的表
        }
        HTableDescriptor hTableDescriptor = new HTableDescriptor(tablename);
        for(String str:fields)
        {
                HColumnDescriptor hColumnDescriptor = new HColumnDescriptor(str);
                hTableDescriptor.addFamily(hColumnDescriptor);
        }
        admin.createTable(hTableDescriptor);
        System.out.println("表已创建成功");     
        close();
    }
    /**
     * 向表 tableName、行 row(用 S_Name 表示)和字符串数组 fields 指定的单元格中添加对应的数据 values。
     * 其中,fields 中每个元素如果对应的列族下还有相应的列限定符的话,用“columnFamily:column”表示。
     * 例如,同时向“Math”、“Computer Science”、“English”三列添加成绩时,
     * 字符串数组 fields 为{“Score:Math”, ”Score:Computer Science”, ”Score:English”},
     * 数组values 存储这三门课的成绩。
     */
	public static void addRecord(String tableName,String rowKey,String []fields,String [] values) throws IOException 
	{
        init();
        Table table = connection.getTable(TableName.valueOf(tableName));
        for (int i = 0; i < fields.length; i++) 
        {
	          Put put = new Put(rowKey.getBytes());
	          String [] cols = fields[i].split(":");
	          if(cols.length==1)
	          {
	        	  //因为当输入的是单列族,split仅读出一个字符字符串,即cols仅有一个元素
	        	  put.addColumn(cols[0].getBytes(), "".getBytes(), values[i].getBytes());
	          }
	          else 
	          {
	        	  put.addColumn(cols[0].getBytes(), cols[1].getBytes(), values[i].getBytes());
	          }
	          table.put(put);
        }
        table.close();
        close();
    }
    /**
     * 根据表名查找表信息
     */
    public static void getData(String tableName)throws  IOException
    {
        init();
        Table table = connection.getTable(TableName.valueOf(tableName));
        Scan scan = new Scan();
        ResultScanner scanner = table.getScanner(scan);     
        for(Result result:scanner)
        {
        	showCell((result));
        }
        close();
    }
    /**
     * 格式化输出
     * @param result
     */
    public static void showCell(Result result)
    {
        Cell[] cells = result.rawCells();
        for(Cell cell:cells)
        {
            System.out.println("RowName(行键):"+new String(CellUtil.cloneRow(cell))+" ");
            System.out.println("Timetamp(时间戳):"+cell.getTimestamp()+" ");
            System.out.println("column Family(列族):"+new String(CellUtil.cloneFamily(cell))+" ");
            System.out.println("column Name(列名):"+new String(CellUtil.cloneQualifier(cell))+" ");
            System.out.println("value:(值)"+new String(CellUtil.cloneValue(cell))+" ");
            System.out.println();
        }
    }
    /**
     * 浏览表 tableName 某一列的数据,如果某一行记录中该列数据不存在,则返回 null。
     * 要求当参数 column 为某一列族名称时,如果底下有若干个列限定符,则要列出每个列限定符代表的列的数据;
     * 当参数 column 为某一列具体名称(例如“Score:Math”)时,只需要列出该列的数据。
     * @param tableName
     * @param column
     * @throws IOException
     */
    public static void scanColumn (String tableName,String column) throws IOException
    {
    	init();
        Table table = connection.getTable(TableName.valueOf(tableName));
        Scan scan = new Scan();
       	String [] cols = column.split(":");
        if(cols.length==1)
        {//如果参数只有一部分,那么就将这个参数作为列族来扫描
        	scan.addFamily(Bytes.toBytes(column));
        }
        else 
        {//否则就将这个参数作为具体的列名进行扫描
        	scan.addColumn(Bytes.toBytes(cols[0]),Bytes.toBytes(cols[1]));
    	}
        ResultScanner scanner = table.getScanner(scan);
        for (Result result = scanner.next(); result !=null;result = scanner.next()) 
        {//扫描输出
        	showCell(result);
        }
        table.close();
       	close();
    }
    /**
     * 修改表 tableName,行 row(可以用学生姓名 S_Name 表示),列 column 指定的单元格的数据。
     * @throws IOException
     */
    public static void modifyData(String tableName,String rowKey,String column,String value) throws IOException
    {
         init();
         Table table = connection.getTable(TableName.valueOf(tableName));
         //用rowKey参数设置要插入数据的行键
         Put put = new Put(rowKey.getBytes());
         String [] cols = column.split(":");
         if(cols.length==1)
         {//如果参数只有一部分,则将该部分做为列族名,并设置列名为空字符串
        	 put.addColumn(column.getBytes(),"".getBytes() , value.getBytes());//qualifier:列族下的列名
         }
         else 
         {//否则第一部分为列族名,第二部分为列名
        	 put.addColumn(cols[0].getBytes(),cols[1].getBytes() , value.getBytes());//qualifier:列族下的列名
         }
         //将数据插入到表中
         table.put(put);
         table.close();
         close();
    }
    /**
     * 删除表 tableName 中 row 指定的行的记录。根据行键删
     * @throws IOException
     */
    public static void deleteRow(String tableName,String rowKey) throws IOException
    {
    	init();
    	Table table = connection.getTable(TableName.valueOf(tableName));
    	//使用rowKey参数设置要删除数据的行键
    	Delete delete = new Delete(rowKey.getBytes());
    	table.delete(delete);
    	table.close();
    	close();
    }
	/**
	 * @param args
	 * @throws IOException
	 */
    public static void main(String[] args) throws IOException 
    {
    	// TODO Auto-generated method stub
        hbase test_Two = new hbase();
        boolean flag =true;
        while(flag)
        {
        	System.out.println("------------------------------------------------提供以下功能----------------------------------------------");
			System.out.println("                       1- createTable(创建表,提供表名、列族名)                                      ");
			System.out.println("                       2- addRecord(向已知表名、行键、列簇的表添加值)                       ");
			System.out.println("                       3- ScanColumn(浏览表某一列的数据)                                            ");
			System.out.println("                       4- modifyData(修改某表行,某一列,指定的单元格的数据)    ");
			System.out.println("                       5- deleteRow(删除某表某行的记录)                                                 ");
			System.out.println("------------------------------------------------------------------------------------------------------------------");
			Scanner scan = new Scanner(System.in);
			String choose1=scan.nextLine();
			switch (choose1) 
			{
				case "1":
				{
					System.out.println("请输入要创建的表名");
					String tableName=scan.nextLine();
					System.out.println("请输入要创建的表的列族个数");
					int Num=scan.nextInt();
					String [] fields = new String[Num];
					System.out.println("请输入要创建的表的列族");
					for(int i=0;i< fields.length;i++)
					{
						scan = new Scanner(System.in);
						fields[i]=scan.nextLine();
					}
					System.out.println("正在执行创建表的操作");
					test_Two.createTable(tableName,fields);
					break;
				}
				case "2":
				{
					System.out.println("请输入要添加数据的表名");
					String tableName=scan.nextLine();
					System.out.println("请输入要添加数据的表的行键");
					String rowKey=scan.nextLine();
					System.out.println("请输入要添加数据的表的列的个数");
					int num =scan.nextInt();
					String fields[]=new String[num];
					System.out.println("请输入要添加数据的表的列信息 共"+num+"条信息");
					for(int i=0;i< fields.length;i++)
					{
						BufferedReader in3= new BufferedReader(new InputStreamReader(System.in));
						fields[i] = in3.readLine();
					}
					System.out.println("请输入要添加的数据信息 共"+num+"条信息");
					String values[]=new String[num];
					for(int i=0;i< values.length;i++)
					{
						BufferedReader in2 = new BufferedReader(new InputStreamReader(System.in));
						values[i] = in2.readLine();
					}
					System.out.println("原表信息");
					test_Two.getData(tableName);
					System.out.println("正在执行向表中添加数据的操作........\n");
					test_Two.addRecord(tableName, rowKey, fields, values);
					System.out.println("\n添加后的表的信息........");
					test_Two.getData(tableName);
					break;
				}
				case "3":
				{
					System.out.println("请输入要查看数据的表名");
					String tableName=scan.nextLine();
					System.out.println("请输入要查看数据的列名");
					String column=scan.nextLine();
					System.out.println("查看的信息如下:........\n");
					test_Two.scanColumn(tableName, column);
					break;
				}
				case "4":
				{
					System.out.println("请输入要修改数据的表名");
					String tableName=scan.nextLine();
					System.out.println("请输入要修改数据的表的行键");
					String rowKey=scan.nextLine();
					System.out.println("请输入要修改数据的列名");
					String column=scan.nextLine();
					System.out.println("请输入要修改的数据信息  ");
					String value=scan.nextLine();
					System.out.println("原表信息如下:........\n");
					test_Two.getData(tableName);
					System.out.println("正在执行向表中修改数据的操作........\n");
					test_Two.modifyData(tableName, rowKey, column, value);
					System.out.println("\n修改后的信息如下:........\n");
					test_Two.getData(tableName);
					break;
				}
				case "5":
				{
					System.out.println("请输入要删除指定行的表名");
					String tableName=scan.nextLine();
					System.out.println("请输入要删除指定行的行键");
					String rowKey=scan.nextLine();
					System.out.println("原表信息如下:........\n");
					test_Two.getData(tableName);
					System.out.println("正在执行向表中删除数据的操作........\n");
					test_Two.deleteRow(tableName, rowKey);
					System.out.println("\n删除后的信息如下:........\n");
					test_Two.getData(tableName);
					break;
				}
				default:
				{
					System.out.println("   你的操作有误 !!!    ");
					break;
				}
			}
	        System.out.println(" 你要继续操作吗? 是-true 否-false ");
			flag=scan.nextBoolean();
		}
		System.out.println("   程序已退出!    ");
	}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/451356.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【天梯赛补题】

175对我这种蒟蒻好难&#xff0c;&#xff0c;&#xff0c; L1-6剪切粘贴 题目详情 - L1-094 剪切粘贴 (pintia.cn) 天梯赛&#xff1a;L1-094 剪切粘贴_scarecrow133的博客-CSDN博客 本蒟蒻看到字符串就害怕&#xff0c;一看就没思路&#xff0c;果断跳过了…… 等佬佬讲…

表的查询内容

表的查询 这里是关键的select的使用对表不同的条件进行筛选&#xff0c;实现对于内容的书写 全列查询 使用*进行查询&#xff0c;表现的是整个表的内容。 指定列查询 name的id列信息查询 查询字段为表达式 这里的id加上10&#xff0c;形成了新的列表 这里的id1 id的结果聚合在…

echarts 象形柱图

Echarts 常用各类图表模板配置 注意&#xff1a; 这里主要就是基于各类图表&#xff0c;更多的使用 Echarts 的各类配置项&#xff1b; 以下代码都可以复制到 Echarts 官网&#xff0c;直接预览&#xff1b; 图标模板目录 Echarts 常用各类图表模板配置一、象形柱图二、环形图…

苹果笔到底有没有必要买?苹果平板电容笔排行榜

事实上&#xff0c;Apple Pencil与市场上普遍存在的电容笔最大的区别&#xff0c;就是两者的重量以及所具有的压感都互不相同。但是&#xff0c;苹果原有的电容笔因其昂贵的价格而逐步被平替电容笔所替代&#xff0c;而平替电容笔所具备的各种性能也在逐步提高。接下来&#xf…

【c语言】函数的数据传递原理 | 数组传入函数方法

创作不易&#xff0c;本篇文章如果帮助到了你&#xff0c;还请点赞支持一下♡>&#x16966;<)!! 主页专栏有更多知识&#xff0c;如有疑问欢迎大家指正讨论&#xff0c;共同进步&#xff01; 给大家跳段街舞感谢支持&#xff01;ጿ ኈ ቼ ዽ ጿ ኈ ቼ ዽ ጿ ኈ ቼ ዽ ጿ…

什么是摄像头组播技术?有哪些应用场景?

摄像头组播技术是一种广泛应用于视频会议、网络监控等领域的网络传输技术&#xff0c;它将摄像头采集到的视频信号通过网络进行传输&#xff0c;实现多用户同时观看。本文将介绍摄像头组播的基本原理、应用场景以及存在的问题与解决方案。 一、摄像头组播的基本原理 摄像头组播…

法规标准-EU 2021-646标准解读

EU 2021-646是做什么的&#xff1f; EU 2021-646全称为关于机动车紧急车道保持系统&#xff08;ELKS&#xff09;型式认证统一程序和技术规范&#xff0c;其中主要描述了对认证ELKS系统所需的功能要求及性能要求 基本要求 1.应急车道保持系统&#xff08;ELKS&#xff09;应…

obsidian体验组件世界

title: 组件世界-初体验 date: 2023-04-23 13:23 tags: &#x1f308;Description&#xff1a; ​ 逛网站的时候看到的组件库&#xff0c;感觉很漂亮&#xff0c;记录并实验看下效果。 我用的是 obsidian&#xff0c;所以本文是基于 obsidian 来实验组件世界的效果。 组件世界-…

iMazing2023最新免费版iOS设备管理软件

iMazing是一款功能强大的iOS设备管理软件&#xff0c;它可以帮助用户备份和管理他们的iPhone、iPad或iPod Touch上的数据。除此之外&#xff0c;它还可以将备份数据转移到新的设备中、管理应用程序、导入和导出媒体文件等。本文将详细介绍iMazing的功能和安全性&#xff0c;并教…

设计模式 --- 行为型模式

一、概述 行为型模式用于描述程序在运行时复杂的流程控制&#xff0c;即描述多个类或对象之间怎样相互协作共同完成单个对象都无法单独完成的任务&#xff0c;它涉及算法与对象间职责的分配。 行为型模式分为类行为模式和对象行为模式&#xff0c;前者采用继承机制来在类间分…

《安富莱嵌入式周报》第310期:集成大语言模型的开源调试器ChatDBG, 多功能开源计算器,M7内核航空航天芯片评估板, Zigbee PRO规范

周报汇总地址&#xff1a;嵌入式周报 - uCOS & uCGUI & emWin & embOS & TouchGFX & ThreadX - 硬汉嵌入式论坛 - Powered by Discuz! 视频版&#xff1a; https://www.bilibili.com/video/BV1GM41157tV/ 《安富莱嵌入式周报》第310期&#xff1a;集成大语…

Spring Gateway + Oauth2 + Jwt网关统一鉴权

之前文章里说过&#xff0c;分布式系统的鉴权有两种方式&#xff0c;一是在网关进行统一的鉴权操作&#xff0c;二是在各个微服务里单独鉴权。 第二种方式比较常见&#xff0c;代码网上也是很多。今天主要是说第一种方式。 1.网关鉴权的流程 重要前提&#xff1a;需要收集各个…

循环代码模型构建方法

循环结构是源代码程序的重要结构&#xff0c;然而即使是简单的循环程序&#xff0c;也很容易出错&#xff0c;循环中的很多错误往往需要执行多次或者在某些特定的情况下才能被发现&#xff0c;检测这些错误的代价很高&#xff0c;所以需要重点开展对软件循环代码的安全性分析研…

简单聊下HBase

大家好&#xff0c;我是易安&#xff01; Google发表了三篇论文&#xff0c;即GFS、MapReduce和BigTable&#xff0c;被誉为“三驾马车”&#xff0c;开启了大数据时代。今天我们来聊一下BigTable对应的NoSQL系统HBase&#xff0c;看看它是如何处理海量数据的。 在计算机数据存…

Mybatis 全局配置文件 mybatis-config.xml

1、全局配置文件的用处 mybatis通过配置文件可以配置数据源、事务管理器、运行时行为、处理别名、类型处理、插件等信息。在mybatis应用初始化时&#xff0c;程序会解析全局配置文件&#xff0c;使用配置的信息实例化Configuration组件&#xff0c;完成基本配置的初始化。在my…

图论 Union-Find 并查集算法

union-find API&#xff1a; class UF { public:/* 将 p 和 q 连接 */void union(int p, int q);/* 判断 p 和 q 是否连通 */bool connected(int p, int q);/* 返回图中有多少个连通分量 */int count(); };连通性概念 触点&#xff1a;每个单独的不与任何点相连的点叫做触点 连…

绿色智慧档案馆构想之智慧档案馆环境综合管控一体化平台

【智慧档案馆整体效果图】 智慧档案库房一体化平台通过智慧档案管理&#xff0c;实现智慧档案感知协同处置功能&#xff1b;实现对档案实体的智能化识别、定位、跟踪监控&#xff1b;实现对档案至智能密集架、空气恒湿净化一体设备、安防设备&#xff0c;门禁设备等智能化巡检与…

camunda流程引擎receive task节点用途

Camunda的Receive Task用于在流程中等待外部系统或服务发送消息。当接收到消息后&#xff0c;Receive Task将流程继续执行。Receive Task通常用于与Send Task配合使用&#xff0c;以便流程可以在发送和接收消息之间进行交互。 Receive Task可以用于以下场景&#xff1a; 1、等…

DAB-DETR代码学习记录之模型解析

DAB-DETR是吸收了Deformable-DETR&#xff0c;Conditional-DETR&#xff0c;Anchor-DETR等基础上完善而来的。其主要贡献为将query初始化为x,y,w,h思维坐标形式。 这篇博文主要从代码角度来分析DAB-DETR所完成的工作。 DAB-DETR主要是对Decoder模型进行改进。博主也主要是对Dec…

【C++】6. 内联函数

文章目录 前言一、宏函数二、内联函数三、内联函数的易错点 前言 当我们调用函数时&#xff0c;是有很多消耗的。其中最大的销毁就是为函数开辟空间 - 函数栈帧。 如果我们有一个函数&#xff0c;很短&#xff0c;而且要调用很多次&#xff0c;比如Swap()。它所造成消耗就比较…