美文网首页
Unity通过代码获取SHA1

Unity通过代码获取SHA1

作者: 全新的饭 | 来源:发表于2024-06-05 13:56 被阅读0次
    image.png
    #if UNITY_EDITOR
    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using UnityEditor;
    using System.IO;
    using System.Runtime.CompilerServices;
    
    public class ShowSHA1
    {
        // user.keystore的路径
        private static string KeyStoreFilePath => "Assets/user.keystore";
        // keystore的密码
        private static string Password => "password123";
        private static string KeystorePath => Path.Join(Path.GetDirectoryName(Application.dataPath), KeyStoreFilePath);
    
        [MenuItem("Tools/显示SHA1")]
        private static void Show()
        {
            var args = $"keytool -list -v -keystore {KeystorePath}  -storepass {Password}";
    
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            //设置要启动的应用程序
            p.StartInfo.FileName = "cmd.exe";
            //是否使用操作系统shell启动
            p.StartInfo.UseShellExecute = false;
            // 接受来自调用程序的输入信息
            p.StartInfo.RedirectStandardInput = true;
            //输出信息
            p.StartInfo.RedirectStandardOutput = true;
            // 输出错误
            p.StartInfo.RedirectStandardError = true;
            //不显示程序窗口
            p.StartInfo.CreateNoWindow = true;
            //启动程序
            p.Start();
    
            //向cmd窗口发送输入信息
            p.StandardInput.WriteLine(args + "&exit");
    
            p.StandardInput.AutoFlush = true;
    
            //获取输出信息
            string strOuput = p.StandardOutput.ReadToEnd();
            //等待程序执行完退出进程
            p.WaitForExit();
            p.Close();
    
            Debug.Log(strOuput);
        }
    }
    #endif
    

    相关文章

      网友评论

          本文标题:Unity通过代码获取SHA1

          本文链接:https://www.haomeiwen.com/subject/bypuqjtx.html