240 发简信
IP属地:广东
  • 120
    Unity Android平台读取文件时添加了权限依然报错“Access to the path is denied“

    源自:https://blog.csdn.net/qq_33547099/article/details/110631476 如果你发布的安卓目标版本是10.0以前的,直接在...

  • 120
    小程序云函数 外部系统调用流程

    步骤: 1、获取token 2、调用api,以json形式传参 详解: 第一步:获取token 相关文档:https://developers.weixin.qq.com...

  • 单例 + 委托

    类A:public class a : MonoBehaviour{public delegate void do_A(int i);public event do_A en...

  • css 自定义字体

    @font-face {font-family:'oppor';src: url(http://localhost/wordpress/font/OPPOSANS-R.TTF...

  • unity xlua入门

    xlua脚本 myxlua.lua.txt print("my xlua file");num1=10str1='this is lua string'tt={name='z...

  • Js WebSocket

    var ws = new WebSocket("ws://localhost:7272[ws://localhost:7272]");//申请一个WebSocket对象,参数...

  • Js WebSocket

    var ws = new WebSocket("ws://localhost:7272"); //申请一个WebSocket对象,参数是服务端地址,同http协议使用http...

  • unity json

    public class MyClass { public int level; public float timeElapsed; public...

  • 120
    thinkphp Redis可用

    摘自:https://www.cnblogs.com/camg/p/11018539.html 因为最近要用到Redis,下面记录下如何给PHP开启redis的扩展。 一、安...

  • unity 压缩

    using System.Collections; using System.Collections.Generic; using System.IO; using Syst...

  • Android 判断数数字 判断是字母

    判断是数字 public static boolean isNumeric(String str){ for (int i = str.length();--i>=0;){ ...

  • android 与服务器http数据对接

    public String networker_data(String url) { String result =""; // String URL realURL =...

  • android + php 上传图片到服务器

    一、添加权限 <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" too...