タグ付けされた質問 「denied」

23
パスへのアクセスが拒否されました
私はこの質問がここで何度も尋ねられたことを知っていますが、私の問題の解決策を見つけることができません。私は.net c#のフォルダに画像を保存しようとしていますが、この例外が発生します: Access to the path 'C:\inetpub\wwwroot\mysite\images\savehere' is denied.The error occured at mscorlib because at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess …
164 c#  .net  iis  path  denied 

9
Android:java.lang.SecurityException:Permission Denial:start Intent
通知を表示するために他のアプリケーションから呼び出されるGWVectraNotifierアクティビティを含むアプリケーションを作成しました。 通知ダイアログには、「表示」ボタンと「閉じる」ボタンがあります。 「表示」ボタンをクリックすると、対応するアクティビティが開始されます。 上記のアプリケーションの機能を確認するには、 チェックメールイベントトリガーでK9MailアプリケーションからGWVectraNotifierアクティビティを開始しました。 GWVectraNotifierアクティビティを正常に開始できますが、「表示」ボタンをオンクリックすると、K9mailの「MessageList」アクティビティを開始する必要があります。これを行うには、以下のコードを記述します。 Intent i = new Intent(); i.setComponent(new ComponentName("com.fsck.k9", "com.fsck.k9.activity.MessageList")); i.putExtra("account", accUuid); i.putExtra("folder", accFolder); startActivity(i); 投げる: WARN/ActivityManager(59): Permission denied: checkComponentPermission() reqUid=10050 WARN/ActivityManager(59): Permission Denial: starting Intent { cmp=com.fsck.k9/.activity.MessageList (has extras) } from ProcessRecord{43f6d7c8 675:com.i10n.notifier/10052} (pid=675, uid=10052) requires null WARN/System.err(675): java.lang.SecurityException: Permission Denial: starting Intent { cmp=com.fsck.k9/.activity.MessageList …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.