同样的代码粘贴到java里面就可以运行,哪位指点一下,很郁闷
环境 :win7 vs2008 .net3.5 SDK(2014-06-26)
代码:
-------------------------------------
String accessKeyId = "";
String accessKeySecret = "";
String endPoint = "http://oss-cn-beijing.aliyuncs.com";
// 初始化一个OSSClient
client = new OssClient(endPoint,accessKeyId, accessKeySecret);
client.ListBuckets();
-------------------------------------
总是提示异常
未处理 System.NullReferenceException
Message="未将对象引用设置到对象的实例。"
Source="Aliyun.OpenServices"
StackTrace:
在 Aliyun.OpenServices.Common.Communication.RetryableServiceClient.SendImpl(ServiceRequest request, ExecutionContext context, Int32 retries) 位置 d:\Work\API\openapi\dotnet\aliyunapi\Common\Communication\RetryableServiceClient.cs:行号 82
在 Aliyun.OpenServices.Common.Communication.RetryableServiceClient.Send(ServiceRequest request, ExecutionContext context) 位置 d:\Work\API\openapi\dotnet\aliyunapi\Common\Communication\RetryableServiceClient.cs:行号 54
在 Aliyun.OpenServices.OpenStorageService.Commands.OssCommand.Execute() 位置 d:\Work\API\openapi\dotnet\aliyunapi\OpenStorageService\Commands\OssCommand.cs:行号 76
在 Aliyun.OpenServices.OpenStorageService.Commands.OssCommand`1.Execute() 位置 d:\Work\API\openapi\dotnet\aliyunapi\OpenStorageService\Commands\OssCommand.cs:行号 125
在 Aliyun.OpenServices.OpenStorageService.OssClient.ListBuckets() 位置 d:\Work\API\openapi\dotnet\aliyunapi\OpenStorageService\OssClient.cs:行号 129
在 WindowsFormsApplication2.Form1.button1_Click(Object sender, EventArgs e) 位置 C:\Users\jji\Documents\Visual Studio 2008\Projects\WindowsFormsApplication2\WindowsFormsApplication2\Form1.cs:行号 30
在 System.Windows.Forms.Control.OnClick(EventArgs e)
在 System.Windows.Forms.Button.OnClick(EventArgs e)
在 System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
在 System.Windows.Forms.Control.WndProc(Message& m)
在 System.Windows.Forms.ButtonBase.WndProc(Message& m)
在 System.Windows.Forms.Button.WndProc(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
在 System.Windows.Forms.Application.Run(Form mainForm)
在 WindowsFormsApplication2.Program.Main() 位置 C:\Users\jji\Documents\Visual Studio 2008\Projects\WindowsFormsApplication2\WindowsFormsApplication2\Program.cs:行号 17
在 System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
在 System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
在 Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
在 System.Threading.ThreadHelper.ThreadStart_Context(Object state)
在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
在 System.Threading.ThreadHelper.ThreadStart()
InnerException:
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。