aliyun-oss-sync 阿里云本地同步 编译后打jar包, 加cron任务定时check目录上传 */5 * * * * /home/dev/oss-task/run.sh run.sh nohup java -jar /home/dev/oss-task/ossupload.jar >> /home/dev/oss-task/upload.log 2>&1 & 依赖: lib/aliyun-sdk-oss-2.0.5.jar lib/commons-codec-1.9.jar lib/commons-logging-1.2.jar lib/hamcrest-core-1.1.jar lib/httpclient-4.4.jar lib/httpcore-4.4.jar lib/jdom-1.1.jar lib/log4j-1.2.17.jar
2022-10-28 06:44:22 4KB Java
1
CTG-MBOSS OSS服务开通系统规范
2022-10-25 18:04:57 838KB CTG-MBOSSOSS服务开
1
ffmpeg服务器转换视频切片上传oss服务,ffmpeg将mp4视频转m3u8、ts,上传oss实现项目视频分片加载,防用户下载
2022-10-24 16:05:13 11KB 音视频 服务器 运维 ffmpeg
1
delphi xe10.1 开发的图片上传阿里oss动态库 delphi xe10.1 开发的图片上传阿里oss动态库 delphi xe10.1 开发的图片上传阿里oss动态库
2022-10-11 10:52:47 460KB delphi oss 阿里
1
Nexus Repository OSS is distributed with Sencha Ext JS pursuant to a FLOSS Exception agreed upon between Sonatype, Inc. and Sencha Inc. Sencha Ext JS is licensed under GPL v3 and cannot be redistributed as part of a closed source work. Nexus Repository Manager 2 OSS is a repository manager which can be freely used and is distributed under the Eclipse Public License (EPL Version 1).
2022-09-27 11:27:48 78.61MB Nexus2 Maven仓库
1
MD5加密算法和登录控件,对于登录认证有一定的帮助。
阿里云对于临时授权这块和OSS上传这块,已经如何配合php和前端js这块,没有个系统的帮助文档,让人一开始找起来很崩溃,特将需要用到的js和文档打包放在一起,减少以后开发者的开发负担!
2022-09-18 09:01:29 805KB oss sts 上传视频 browser.js
1
using System; using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; using Aliyun.OSS; using UnityEditor; using Aliyun.OSS.Common; public class AliyunOss { // 创建OssClient实例。 OssClient client; string endpoint = "https://oss-cn-shenzhen.aliyuncs.com"; string accessKeyId = "LTAIEs3jNeemGrVB"; string accessKeySecret = "LCBXE73BHFkxwfOHVS7FOe0GBTaZVM"; string bucketName = "zhandingbo"; string objectName = "modal"; //string localFilename = "Assets/StreamingAssets"; //string outPath = "Assets/StreamingAssets"; //Application.temporaryCachePath string localFilename = "C:/Users/11854/Desktop/modal.png"; string outPath = "Assets/StreamingAssets"; //Application.temporaryCachePath #region 单例 private static AliyunOss mSelf = null; public static AliyunOss Instance { get { if (mSelf == null) { mSelf = new AliyunOss(); } return mSelf; } } AliyunOss() { client = new OssClient(endpoint, accessKeyId, accessKeySecret); } #endregion public void OssAb(string path, string name) { try { // 上传文件。 Debug.Log(path + "-----------" + objectName + path + "/" + name); // client.PutObject(bucketName, objectName + path + "/" + name, localFilename + path + "/" + name); // client.PutObject(bucketName, objectName , localFilename); client.PutObject(bucketName, path, name); Debug.Log("Oss succeeded"); } catch (Exception e) { Console.WriteLine(e); throw; } } }
2022-09-14 10:26:06 204KB unity
1
Unity2021 Aliyun.OSS.SDK
2022-09-13 19:06:26 203KB Unity Aliyun OSS
1
阿里云可视化客户端访问程序
2022-08-12 14:00:32 69.69MB oss
1