質問編集履歴

2

コードの修正

2016/04/27 09:10

投稿

sobue
sobue

スコア329

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,6 @@
1
+ Public Sub adressConversion(ByVal post As String, ByVal postmessagetable As Hashtable)
2
+
1
- Dim reader As StreamReader = Nothing
3
+ Dim reader As StreamReader = Nothing
2
4
 
3
5
  Dim ary As New ArrayList
4
6
 
@@ -26,7 +28,7 @@
26
28
 
27
29
  ary.Add(arystr(1))
28
30
 
29
- postmessagetable.item(ary) = ary
31
+ postmessagetable.Item(ary) = ary
30
32
 
31
33
 
32
34
 
@@ -58,8 +60,8 @@
58
60
 
59
61
  End Sub
60
62
 
61
-
63
+ vb.netでは上記のように記述しますが
62
64
 
63
65
  javaで下記のようなvalueを変更するような記述はどのように記述したらよいでしょうか?
64
66
 
65
- postmessagetable(ary) = ary
67
+ postmessagetable.item(ary) = ary

1

コードの修正

2016/04/27 09:10

投稿

sobue
sobue

スコア329

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  ary.Add(arystr(1))
28
28
 
29
- postmessagetable(ary) = ary
29
+ postmessagetable.item(ary) = ary
30
30
 
31
31
 
32
32